Visit the #1 education and community site for the SQL Server Community, for articles, resources, forums, sample scripts and book reviews.
Communities, Learning, and Events

SQL Server Execution Plans, Second Edition
By Grant Fritchey
| Buy from Amazon.com |
Kindle: $10.30 |
| Buy from Amazon.co.uk: £19.99 |
Kindle: £6.79 |
Editorial Review
Every day, out in the various online forums devoted to SQL Server, and on Twitter, the same types of questions come up repeatedly: Why is this query running slowly? Why is SQL Server ignoring my index? Why does this query run quickly sometimes and slowly at others? My response is the same in each case: have you looked at the execution plan?
An execution plan describes what’s going on behind the scenes when SQL Server executes a query. It shows how the query optimizer joined the data from the various tables defined in the query, which indexes it used, if any, how it performed any aggregations or sorting, and much more. It also estimates the cost of all of these operations, in terms of the relative load placed on the system.
Every Database Administrator, developer, report writer, and anyone else who writes T-SQL to access SQL Server data, must understand how to read and interpret execution plans. My book leads you right from the basics of capturing plans, through how to interrupt them in their various forms, graphical or XML, and then how to use the information you find there to diagnose the most common causes of poor query performance, and so optimize your SQL queries, and improve your indexing strategy.
Table of Contents
Chapter 1: Execution Plan Basics
Chapter 2: Graphical Execution Plans for Basic Queries
Chapter 3: Text and XML Execution Plans for Basic Queries
Chapter 4: Understanding More Complex Query Plans
Chapter 5: Controlling Execution Plans with Hints
Chapter 6: Cursor Operations
Chapter 7: Special Datatypes and Execution Plans
Chapter 8: Advanced Topics
About the author
Grant Fritchey is a SQL Server MVP with over 20 years' experience in IT including time spent in support, development, and database administration.
Grant has worked with SQL Server since version 6.0, back in 1995. He has developed in VB, VB.Net, C#, and Java. Grant joined Red Gate as a Product Evangelist in January 2011.
He writes articles for publication at SQL Server Central, Simple-Talk, and other community sites, and has published two books: the one you're reading now and QL Server 2012 Query Performance Tuning Distilled, 3rd Edition (Apress, 2012).
In the past, people have called him intimidating and scary. To which his usual reply is "Good."
You can contact him through grant@scarydba.com.
Publisher: Red Gate Books
Visit our rapid fire stackoverflow-style Q&A site for all things SQL Server. Ask questions, answer them, vote good answers up and bad ones down, build your reputation in badges.
Visit our online technical journal and community hub for SQL Server, .NET and Exchange professionals.

