Answers

Question and Answer:

  Home  Basic SQL Server

⟩ Do you know query execution plan?

- The optimizer available in SQL Server optimizes the code to be effectively executed.

- A query execution plan shows how this optimizer would run the query.

- Query execution plan can be viewed by :

- Using the Show Execution Plan option available in Query Analyzer,

- Displaying Estimated Execution Plan on the query dropdown menu,

- Use the SET SHOWPLAN_TEXT ON command before running a query and capturing the execution plan event in a SQL Server Profiler trace.

 198 views

More Questions for you: