What is Query Execution Plan? How does it help optimize or
tune a database driven application?

Answers were Sorted based on User's Feedback



What is Query Execution Plan? How does it help optimize or tune a database driven application?..

Answer / arthanari r

When hte SQL statement is executed Oracle designs an
execution plan for it. This execution plan is basically a
step by step instruction for how the statement must be
executed. That is, the order in which tables are read, if
indexes are used, which join methods are used to join
tables and so on. The execution plan for an SQL statement
can be viewed with the explain plan statement. The query
execution plan is elaborated during an SQL statement's
parse phase.

Is This Answer Correct ?    7 Yes 0 No

What is Query Execution Plan? How does it help optimize or tune a database driven application?..

Answer / racing

When the SQL statement is executed Oracle designs an
execution plan for it. This execution plan is basically a
step by step instruction for how the statement must be
executed. That is, the order in which tables are read, if
indexes are used, which join methods are used to join
tables and so on. The execution plan for an SQL statement
can be viewed with the explain plan statement. The query
execution plan is elaborated during an SQL statement's
parse phase.

Is This Answer Correct ?    3 Yes 1 No

Post New Answer

More SQL Server Interview Questions

What is the parse query button used for?

0 Answers  


What is a covering index?

0 Answers  


Can you change the data type of a column in a table after the table has been created? If so, which command would you use?

0 Answers  


What is measure group, measure? : sql server analysis services, ssas

0 Answers  


What is meant by datasource?

0 Answers  






What command is used to rename the database?

0 Answers  


How many non clustered indexes there can be on table ?

0 Answers  


Why use “in” clause in sql server?

0 Answers  


Why do we backup Active Directory ?

0 Answers  


event classes in sql server

2 Answers   Accenture, AFE,


Explain about system stored procedure?

0 Answers  


How to create a scrollable cursor with the scroll option?

0 Answers  


Categories