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!

Interested in getting your voice heard by members of the Developer Marketing team at Oracle? Check out this post for AppDev or this post for AI focus group information.

Indexes in Oracle - Explain Plan

Lakshmi PApr 29 2025

I have worked on Explain Plan before to add indexes for multi join queries.

For eg :

explain plan for

select * from mytable;

select * from

table(dbms_xplan.display);

Usually the above statements will give the plan of mytable.

But in this new database which I started working the output shows as some other log table instead of the table I give in explain plan.

Please advise.

Comments
Post Details
Added on Apr 29 2025
4 comments
127 views