When you create an index on a column or number of columns in MS SQL Server (I'm using version 2005), you can specify that the index on each column be either ascending or descending. I'm having a hard time understanding why this choice is even here. Using binary sort techniques, wouldn't a lookup be just as fast either way? What difference does it make which order I choose?
|
This primarily matters when used with composite indexes:
can be used for either:
or:
, but not for:
An index on a single column can be efficiently used for sorting in both ways. See the article in my blog for details: Update: In fact, this can matter even for a single column index, though it's not so obvious. Imagine an index on a column of a clustered table:
The index on Since the table is clustered, the references to rows are actually the values of the This means that that leaves of the index are actually ordered on
needs no sorting. If we create the index as following:
, then the values of This means that the following query:
can be served by In other words, the columns that constitute a |
||||
|
For a true single column index it makes little difference from the Query Optimiser's point of view. For the table definition
The Query
Uses an ordered scan with scan direction
However it can make a big difference in terms of logical fragmentation. If the index is created with keys descending but new rows are appended with ascending key values then you can end up with every page out of logical order. This can severely impact the size of the IO reads when scanning the table and it is not in cache. See the fragmentation results
for the script below
|
|||||
|
|
The sort order matters when you want to retrieve lots of sorted data, not individual records. Note that (as you are suggesting with your question) the sort order is typically far less significant than what columns you are indexing (the system can read the index in reverse if the order is opposite what it wants). I rarely give index sort order any thought, whereas I agonize over the columns covered by the index. @Quassnoi provides a great example of when it does matter. |
||||
|
|
