About

A execution, or query plan, is the breakdown of steps SQL server uses to get a result. Specifically it is the plan that the SQL server optimizer determines is the best, most efficient, way to get the data.

The execution plan can be analyzed to determine what is happening and how to improve efficiency. Including finding if an index is being scanned or missing an index altogether. There is also many points of analytic data that can be acquired via the plan including things such as estimated and actual number of rows. As of SQL server 2008 execution plan will provide missing or covering index recommendations including the SQL code to create the recommended index.

This tag is specific to SQL server query execution plans.

history|show excerpt|excerpt history