what is explain plan?, given an example...
Answer Posted / rajesh venati
this will also work.
An Explain Plan is a tool that you can use to have Oracle
explain to you how it plans on executing your query.
ex:-
SQL> set autotrace on explain
SQL> select * from emp;
Execution Plan
----------------------------------------------------------
Plan hash value: 3956160932
--------------------------------------------------------------------------
| Id | Operation | Name | Rows | Bytes | Cost
(%CPU)| Time |
--------------------------------------------------------------------------
| 0 | SELECT STATEMENT | | 14 | 518 | 3
(0)| 00:00:01 |
| 1 | TABLE ACCESS FULL| EMP | 14 | 518 | 3
(0)| 00:00:01 |
--------------------------------------------------------------------------
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
where are cookies actually stored on the hard disk? : Sql dba
Is left join inner or outer by default?
What is sqlcommand?
What does count (*) mean?
How do you update f as m and m as f from the below table testtable?
Cite the differences between execution of triggers and stored procedures?
Explain what is dbms?
What is the difference between union and union all command?
What is primary key in db?
How do you take the union of two tables in sql?
What does sql stand for?
What is difference between stored function and application function?
define join and explain different type of joins? : Sql dba
Explain correlated query work?
How does left join work in sql?