what is explain plan?
Answers were Sorted based on User's Feedback
The explain plan command is a tool to tune SQL statements.To
use if you must have an explain_table generated in the user
you are running the explain plan for.This is created by
using the utlxplan.sql script.once the explain plan table
exists u run the explain plan command giving as it's
argument the SQL statement to be explained.The explain_plan
table is then queried to see the execution plan of the
statement.Explain plan can also be run using tkprof.
Is This Answer Correct ? | 11 Yes | 1 No |
Answer / sureshkumar.somayajula
Explain Plan determines the execution plan for SQL
Statements.
Syntax:
expalin paln
set statement_id= ' Text '
schemaname.Table_name@Databaselink
for Statement.
Is This Answer Correct ? | 6 Yes | 1 No |
Answer / b.v.srinivas
Explian plan describes the effective way to process sql
statement.
Explain plan is generated by Optimizer.
And explain plan is stored in library cache.
Is This Answer Correct ? | 6 Yes | 1 No |
Answer / ashok
Explain plan shows the details of the joins cordinality and
time taken.we can easily find the what join is taking much
time in a SQL query. by clicking F5 you can see the explin
plan in PL/SQL developer.
Is This Answer Correct ? | 11 Yes | 7 No |
What is a pdo connection?
Define SQL and state the differences between SQL and other conventional programming Languages?
What is a Procedure ?
what is sql in mysql? : Sql dba
What is difference sql and mysql?
Why partition by is used in sql?
I m giving Source, Destination and Age. Write a procedure or function, it will give to u this source to destination tickets are available or not, if available then check this person is senior citizen or not,if this person is senior citizen then give some discount. PLZ give this answer...... Thanks advance.....
What is an intersect?
how to findout the 100th maximum salary
What is the difference between stored procedure and view?
The in operator may be used if you know the exact value you want to return for at least one of the columns.
Why trigger is used in sql?