Skip to Main Content

SQL & PL/SQL

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

How to obtain execution plan without the use of a specific list of indexes ?

CHU TOULOUSEApr 21 2020 — edited Apr 21 2020

Hello Folks;

I was wondering how to obtain execution plan without the use of a specific list of indexes ?

Usually I use : "explain plan for <SQLquery>; select * from table(dbms_xplan.display);" or "set autotrace on" if i'm allowed to execute the query.

But before dropping an index (a list of indexes) it will be great to have the 2 executions plan (before and after drop index).

I was thinking...if you have a query to know in which SQLIDs a list of indexes is in use it will be helpfull to.

Thanks for your help, regards

Antoine

This post has been answered by chris227 on Apr 21 2020
Jump to Answer
Comments
Post Details
Added on Apr 21 2020
4 comments
510 views