What is Query Execution Plan? How does it help optimize or
tune a database driven application?
Answer Posted / 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 View All Answers
How many levels of sp nesting are possible?
If a table does not have a unique index, can a cursor be opened on it?
can we have a nested transaction? : Sql server database administration
What is log shipping? Can we do logshipping with SQL Server 7.0 - Logshipping is a new feature of SQL Server 2000. We should have two SQL Server - Enterprise Editions. From Enterprise Manager we can configure the logshipping. In logshipping the transactional log file from one server is automatically updated into the backup database on the other server. If one server fails, the other server will have the same db and we can use this as the DR (disaster recovery) plan.
What command is used to delete a table from the database in the sql server and how?
How to attach adventureworkslt physical files to the server?
What is SQL Azure Federations?
How to delete exactly duplicate records from a table?
How to get a list all databases on the sql server?
Explain indexing and what are the advantages of it?
What is row-level compre?
What is user-defined multi-statement table-valued function?
How can I track the changes or identify the latest insert-update-delete from a table?
difference between Clustered index and non clustered index ?
What does null mean?