what is explain plan?, given an example...
Answer Posted / shivainduja
An explain plan is a representation of the access path that
is taken when a query is executed within Oracle.
SQL> explain plan for select * from emp2;
Explained.
SQL> select * from table (DBMS_XPLAN.display);
PLAN_TABLE_OUTPUT
-------------------------------------
Plan hash value: 2941272003
--------------------------------------------------------------------------
| Id | Operation | Name | Rows | Bytes | Cost
(%CPU)| Time |
--------------------------------------------------------------------------
| 0 | SELECT STATEMENT | | 15 | 570 | 3
(0)| 00:00:01 |
| 1 | TABLE ACCESS FULL| EMP2 | 15 | 570 | 3
(0)| 00:00:01 |
--------------------------------------------------------------------------
8 rows selected.
| Is This Answer Correct ? | 4 Yes | 1 No |
Post New Answer View All Answers
Explain what is sql?
What's the difference between inner join and left join?
What is equi join in sql?
Does pl/sql support create command?
what is the difference between inner and outer join? Explain with example. : Sql dba
Does access use sql?
What is identity column in sql server?
Name the different types of indexes in sql and define them.
What is before trigger?
What is a crud api?
Define concurrency control. : Transact sql
How do I view a view in sql?
what is row? : Sql dba
what is the difference difference between procedure and packages
What is the trigger in sql?