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 many data types are supported?
How to update a table row with a record?
How do I call oracle stored procedures that take no parameters?
How to use subqueries with the in operator using oracle?
How to retrieve data from an cursor to a record?
What are the limitations of check constraint?
What is a proxy object?
How to use "if" statements on multiple conditions?
Explain do view contain data?
Explain about functional dependency and its relation with table design?
How to drop an existing table in oracle?
In oracle there is column command, how will you explain that?
Is there a function to split a string in plsql?
How to create additional tablespaces for an new database?
Is truncate autocommit in oracle?