Answers for "execution plan in oracle with example"

SQL
1

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 "execution plan in oracle with example"

Code answers related to "SQL"

Browse Popular Code Answers by Language