Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How Can I Improve Performance of Range Search Queries?

SQL Server Performance Issues

How Can I Improve Performance of Range Search Queries?

by  tlbroadbent  Posted    (Edited  )

Here is a nice little trick that can make a great big difference in query performance. :)I

Sometimes SQL Server fails to use an existing table index when processing a query that does a range search. For example, if the search criteria in a query is like one of the following and ColData has a non-clustered index, SQL server may not use the index.

Where ColData Between 'Z21' and 'Z47'

Where ColData>='Z21' And ColData<='Z47'

It is possible to force SQL Server to use the index by adding an optimizer hint to the query (for example, Index=IndxColData). We can also cause SQL Server to use the index by adding additional criteria to the query as shown below.

Where ColData Between 'Z21' and 'Z47'
And ColData=ColData

Why add the criteria ColData=ColData? The idea here is to trick the query optimizer into using the correct index. The query optimizer almost always chooses to use an existing index for an equality search whereas it may not choose the index for a range search on the same column.

Note that the second condition is always true regardless of the records chosen. In fact, the Query Optimizer recognizes that the condition is always true and doesn't include it in the final query execution plan. ::)
Register to rate this FAQ  : BAD 1 2 3 4 5 6 7 8 9 10 GOOD
Please Note: 1 is Bad, 10 is Good :-)

Part and Inventory Search

Back
Top