Query Tuning

Many administrators address performance problems solely by tuning system-level server performance: for example, memory size, type of file system, number and type of processors, and so on. However, many performance problems cannot be resolved this way. They are better addressed by also analyzing the application queries and updates that the application submits to the database, and how these queries and updates interact with the data contained in the database and the database schema.

In This Section

Topic Description

Analyzing a Query

Contains information about displaying query execution plans by using Microsoft SQL Server Management Studio, Transact-SQL SET options, and by using SQL Server Profiler event classes in traces.

Finding Missing Indexes

Contains information about the SQL Server 2005 "missing indexes" feature. When the query optimizer analyzes a query to determine the best execution plan, it automatically generates information about indexes that would improve query performance even if the indexes do not exist. The missing indexes feature enables you to retrieve this information about missing indexes.

Query Tuning Recommendations

Contains information about what you can do to improve query performance.

Advanced Query Tuning Concepts

Contains information about SQL Server join operations.