Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> Re: Explain plan accuracy and bind variables
I think this comes the various methods people use to take an existing SQL and attempt to determine
an explain plan.
eg you might see in a trace file a slow query
select * from table where col = :b1
You run this through explain plan and voila! Looks great - no problem. But what really happened on the live system was that 'col' was char, and :b1 was numeric, and thus the index on 'col' was not used. The execution plan in a trace file *will* be the one that was used. This is quite different to the plan you would see if you ran 'tkprod explain=..'
etc etc etc
hth
connor
Co-author: "Mastering Oracle PL/SQL - Practical Solutions" - available now web: http://www.oracledba.co.uk web: http://www.oaktable.net
"GIVE a man a fish and he will eat for a day. But TEACH him how to fish, and...he will sit in a boat and drink beer all day"
-- Archives are at http://www.freelists.org/archives/oracle-l/ FAQ is at http://www.freelists.org/help/fom-serve/cache/1.html -----------------------------------------------------------------Received on Fri Feb 06 2004 - 07:18:49 CST
![]() |
![]() |