vote up 8 vote down star
4

What techniques can be applied effectively to improve the performance of SQL queries? Are there any general rules that apply?

flag

10 Answers

vote up 13 vote down check
  • Use primary keys
  • Avoid select *
  • Be as specific as you can when building your conditional statements
  • De-normalisation can often be more efficient
  • Table variables and temporary tables (where available) will often be better than using a large source table
  • Partitioned views
  • Employ indices and constraints
link|flag
vote up 0 vote down

Use a with statment to handle query filtering.
Limit each subquery to the minimum number of rows possible.
then join the subqueries.

WITH
master AS
(
SELECT SSN, FIRST_NAME, LAST_NAME
FROM MASTER_SSN
WHERE STATE = 'PA' AND
GENDER = 'M'
),
taxReturns AS
(
SELECT SSN, RETURN_ID, GROSS_PAY
FROM MASTER_RETURNS
WHERE YEAR < 2003 AND
YEAR > 2000
)
SELECT *
FROM master,
taxReturns
WHERE master.ssn = taxReturns.ssn

A subqueries within a with statement may end up as being the same as inline views, or automatically generated temp tables. I find in the work I do, retail data, that about 70-80% of the time, there is a performance benefit.

100% of the time, there is a maintenance benefit.

link|flag
vote up 1 vote down

There are a couple of things you can look at to optimize your query performance.

  1. Ensure that you just have the minimum of data. Make sure you select only the columns you need. Reduce field sizes to a minimum.

  2. Consider de-normalising your database to reduce joins

  3. Avoid loops (i.e. fetch cursors), stick to set operations.

  4. Implement the query as a stored procedure as this is pre-compiled and will execute faster.

  5. Make sure that you have the correct indexes set up. If your database is used mostly for searching then consider more indexes.

  6. Use the execution plan to see how the processing is done. What you want to avoid is a table scan as this is costly.

  7. Make sure that the Auto Statistics is set to on. SQL needs this to help decide the optimal execution. See Mike Gunderloy's great post for more info. Basics of Statistics in SQL Server 2005

  8. Make sure your indexes are not fragmented. Reducing SQL Server Index Fragmentation

  9. Make sure your tables are not fragmented. How to Detect Table Fragmentation in SQL Server 2000 and 2005
link|flag
vote up 2 vote down

Learn what's really going on under the hood - you should be able to understand the following concepts in detail:

  • Indexes (not just what they are but actually how they work).
  • Clustered indexes vs heap allocated tables.
  • Text and binary lookups and when they can be in-lined.
  • Fill factor.
  • How records are ghosted for update/delete.
  • When page splits happen and why.
  • Statistics, and how they effect various query speeds.
  • The query planner, and how it works for your specific database (for instance on some systems "select *" is slow, on modern MS-Sql DBs the planner can handle it).
link|flag
vote up 0 vote down
  • Indexes
  • Statistics
  • on microsoft stack, Database Engine Tuning Advisor
link|flag
vote up 3 vote down

The biggest thing you can do is to look for table scans in sql server query analyzer (make sure you turn on "show execution plan"). Otherwise there are a myriad of articles at MSDN and elsewhere that will give good advice.

As an aside, when I started learning to optimize queries I ran sql server query profiler against a trace, looked at the generated SQL, and tried to figure out why that was an improvement. Query profiler is far from optimal, but it's a decent start.

link|flag
vote up 0 vote down

The obvious optimization for SELECT queries is ensuring you have indexes on columns used for joins or in WHERE clauses.

Since adding indexes can slow down data writes you do need to monitor performance to ensure you don't kill the DB's write performance, but that's where using a good query analysis tool can help you balanace things accordingly.

link|flag
vote up 0 vote down

Make sure that you have the right indexes on the table. if you frequently use a column as a way to order or limit your dataset an index can make a big difference. I saw in a recent article that select distinct can really slow down a query, especially if you have no index.

link|flag
vote up 0 vote down

In Oracle you can look at the explain plan to compare variations on your query

link|flag
vote up 0 vote down

I think using SQL query analyzer would be a good start.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.