Skip to Main Content

Oracle Developer Tools for VS Code

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!

Feature Request: Explain Plan

Ray007Apr 13 2021

It would be nice if I could put a query in and explain the plan for it.
My current work-around is to run this:

explain plan for

select something super special

from lots_of_tables

where something is awesome;

select * from table(dbms_xplan.display);

The problem is that the display is hard to read. Is there a way to set this to used a fixed width font in the results?

Comments
Post Details
Added on Apr 13 2021
1 comment
63 views