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?