Answers for "oracle show execution plan"

SQL
0

oracle show execution plan

-- Without execution
EXPLAIN PLAN FOR select ...;
SELECT * FROM TABLE(dbms_xplan.display);
-- With execution
SELECT /*+ gather_plan_statistics */  ...;
SELECT * FROM TABLE(dbms_xplan.display_cursor(NULL,NULL,'ALLSTATS LAST'));
Posted by: Guest on April-13-2021

Code answers related to "SQL"

Browse Popular Code Answers by Language