PreviousNext

Why Developers Need to Understand Execution Plans

by bill-s, 2015-01-31T04:32:35.000Z

An execution plan is a visual representation of the operations performed by the database engine in order to return the data required by your query. Sometimes, you will be surprised by what they reveal, even for the most innocuous-looking query. Most queries can be logically understood within the context of the execution plan. Frequently, any problems created by the query will be readily apparent within the execution plan.

Read More