Different ways to get the Explain Plan for a SQL ID
1.To Display the execution plan of the last SQL statement executed by the current session SET LINESIZE 150 SET PAGESIZE 2000 SELECT * FROM table (DBMS_XPLAN.DISPLAY_CURSOR); 2.To display the execution…
Read More