What are the commands youd issue to show the explain plan
for select
Answer Posted / saraswathi muthuraman
SQL> explain plan for select * from dual;
Explained.
SQL> select
substr (lpad(' ', level-1) || operation || ' (' || options
|| ')',1,30 ) "Operation",
object_name
"Object"
from
plan_table
start with id = 0
connect by prior id=parent_id;
SELECT STATEMENT ()
TABLE ACCESS (FULL)
DUAL
2 rows selected.
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
How to connect the oracle server as sysdba?
Difference between pre-select and pre-query
Is there an oracle sql query that aggregates multiple rows into one row?
How does one get the view definition of fixed views/tables?
What is rowid and rownum in oracle?
What is control file used for?
What is the difference between postgresql and oracle?
What is define in oracle?
What is system tablespace?
How to export several tables together?
What is query image?
What is different types of joins?
What is a static data dictionary in oracle?
How to enter a new row into a table interactively?
If youre unsure in which script a sys or system-owned object is created, but you know its in a script from a specific directory, what UNIX command from that directory structure can you run to find your answer?