I agree wholeheartedly. While I was able to get my serial explain plan by issuing the alter session command in the explain window, it was cumbersome -- only 1 command in the window at a time.
The explain plan window definitely needs something like 'Autoselect Statement' to make it more...
The Explain Window fails to launch (via F5) from the SQL Window when the SQL window contains a CTAS statement with subquery_factoring_clause. For example:
create table [TABLE] as
with as
(
select ...
from ...
group by .... grouping sets (.....)
)
select ...
from
group by ..... ...
Is there any way to retrieve an execution plan stored in a table (plan_table) and display it in PL/SQL developer?
I like to store plans for future reference. Would be nice if I could display them in PL/SQL developer.
This didn't work for me. I wanted to compare a parallel execution plan to a serial execution plan.
I switched to single session, restarted the application and then executed:
ALTER SESSION DISABLE PARALLEL QUERY ;
The explain plan window still gave me a parallel execution plan (even if I...
I'd like to a request an additional method for closing windows. Most text editors (i.e., UltraEdit) and tabbed browsers allow you to close all windows/tabs except the one with current focus. I would love to have this ability in PL/SQL developer. I frequently do a close all and then reopen a...