Multiple choice technology databases The execution plan of the SQL statement is stored in A flat file called "plan_table.txt" Oracle Table called "plan_table" Oracle Table called "plan table" A flat file called "plan_table.tbl" Reveal answer Fill a bubble to check yourself B Correct answer Explanation In Oracle, EXPLAIN PLAN results are written by default to a table named "plan_table" (with an underscore), not to flat files or space-separated names like "plan table". This allows querying and formatting of execution plans using DBMS_XPLAN.