Advertisement

10.22.2008 at 07:22PM PDT, ID: 23839416
[x]
Attachment Details

Please help improve the speed of the following update statement

[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

9.0
Zone:

Oracle 10.x

Tags:

Oracle, 10g

The following  update statement is being ran 1 or more times during any given transaction.
An uncontrolable process drops and re-creates the  tmp_table before this update statment is ran.  Due to this the update statement cannot put a lock on tmp_table in case it is drop and re-created during this same transaction.

The current proccess works.  But due to the fact that tmp_table can have 500,000+ rows and table A has 1 million + rows this update is VERY slow.

update table A
   set
   (
      A.column1,
      A.column2
   ) =
   (
      select  B.column1
                 B.column2
      from   tmp_table B
      where  A.PK_1= B.PK_1
   )
where
   a.PK_1 =
   (
      select B.PK_1
          from  tmp_table B
          where  A.PK_1 = B.PK_2
   )
   and A.PK-2 =
      (
         select TO_DATE(B.PK_2, 'YYYYMMDDHH24MISS')
         from tmp_table B
        where A.PK_1 = B.PK_1
 )

Can someone think of a possible alternative solution to this issue?
Answered By: sdstuber
Expert Since: 10/06/2003
Accepted Solutions: 1846
Computer Expertise: Advanced
sdstuber has been an Expert for 5 years 3 months, during which he has posted 7484 comments and answered 1846 questions. sdstuber is just one of 761 experts in the Oracle 10.x Zone. 1 expert collaborated on this answer, which was graded an "A" by the asker.
 
 
 
 
20081119-EE-VQP-47 / EE_QW_2_20070628