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
What is integrity and what is constraint??Explain with example
Explain what are the different type of segments?
How to use "startup" command to start default instance?
Can we connect to ORACLE db using Windows Authentication?
What are the ways tablespaces can be managed and how do they differ?
How to handle a single quote in oracle sql?
What is the parameter mode that can be passed to a procedure?
what are bitmap indexes? How does they work?
State and explain the different types of data models?
1) WIll all the user get the DEFAULT profile, if their current profile got deleted at any point of time? 2) What are the Situation we need to MOVE the TABLE between T.spaces? 3) What is the use of MOVING the TABLE between SCHEMA'S? 4) What are the Table Clause, Segment Clause and the Datafile Clause which will override each other? 5) Explain SORT_AREA_SIZE of Tempfile to make UNIFORM SIZE
How to use subqueries with the exists operator in oracle?
What is a proxy object?
How to rename an index?
Why does for update in oracle 8 cause an ora-01002 error?
What privilege is needed for a user to create tables in oracle?