Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> Re: Slow UPDATE
Is it (showing a different plan)? Is the trace showing index lookups or
full scans?
Thanks Terry, I'm aware of what these events are, it's more the
question: why is tkprof showing=20
an execution plan that obviously isn't the one Oracle executed as per
the trace? tkprof isn't
reliable?
-----Original Message-----
From: oracle-l-bounce_at_freelists.org
[mailto:oracle-l-bounce_at_freelists.org] On Behalf Of Terry Sutton
Sent: Sunday, May 16, 2004 9:29 PM
To: oracle-l_at_freelists.org
Subject: Re: Slow UPDATE
Look at the trace itself (not the tkprof), see what the query is actually doing. If the query is using the index, you'll see "db file sequential reads" of the index and table. If it's doing table scans you'll see "db file scattered reads".
--Terry
-----Original Message-----
From: oracle-l-bounce_at_freelists.org
[mailto:oracle-l-bounce_at_freelists.org]
On Behalf Of jaromir nemec
Sent: Sunday, May 16, 2004 10:26 AM
To: oracle-l_at_freelists.org
Subject: Re: Slow UPDATE
Hi Thomas,
if the table 'OD_CUST_LOCS' has approximately 9682 blocks =
(=3D1936484/200)
I'm pretty sure that the update is doing full scan on it.
If you are on 9i check the "real" execution plan in V$SQL_PLAN.
>call count cpu elapsed disk query current
rows
> Execute 200 578.44 789.45 1852160 1936484 218
200
An "elegant" explanation will be that the Informatica ports have different types than the PK columns. Check the type of the ports 66-68
> WHERE SRC_EFF_FROM_DT =3D :66 AND KEY_ID =3D :67 AND SOURCE_ID =3D :68 regards
Jaromir D.B. Nemec
http://www.db-nemec.com
FAQ is at http://www.freelists.org/help/fom-serve/cache/1.html'unsubscribe' in the subject line.
-----------------------------------------------------------------
----------------------------------------------------------------
Please see the official ORACLE-L FAQ: http://www.orafaq.com
----------------------------------------------------------------
To unsubscribe send email to: oracle-l-request_at_freelists.org put
FAQ is at http://www.freelists.org/help/fom-serve/cache/1.htmlput 'unsubscribe' in the subject line.
-----------------------------------------------------------------
----------------------------------------------------------------
Please see the official ORACLE-L FAQ: http://www.orafaq.com
----------------------------------------------------------------
To unsubscribe send email to: oracle-l-request_at_freelists.org
![]() |
![]() |