Articles → SQL SERVER → Introduction To Execution Plans
Introduction To Execution Plans
Components
- Relational engine → This component generates an execution plan based on the query submitted by the query source.
- Storage engine → Executes queries based on the execution plan.
Process
- Query parsing
- Algebrizer
- Query optimizer
Query Parsing
Algebrizer
- Resolves table and column names referenced in the query.
- Determines the data type of each column involved.
- Identifies the aggregate functions, like group by, max, etc.
Query Optimizer
Estimated And Actual Execution Plan
Posted By - | Karan Gupta |
|
Posted On - | Wednesday, April 1, 2015 |