- August 12–22: Online Training (EU shift)
- Enrollment
- FOSDEM Impressions
- June 8–18: Online Training (US shift)
- November 11-12 in Frankfurt am Main
- Online-Training in July and August
- Oracle + PostgreSQL
- Party time
- PostgreSQL Performance Event
- SQL Server Performance Kurs in Stuttgart
- SQL Server performance training in London
- Shipping Terms
- The two top performance problems caused by ORM tools
- Top Tweets January 2013
- Training Survey
- Use The Index, Luke
- Ask
- Consulting
2011-06-11Myth: Most Selective First
Every time a compound index is created, the order of the columns must be chosen wisely. Section 1.2 is devoted to this question.
However, there is the myth that you should always put the most selective column to the first position; that is just wrong.
Important
The most important consideration when defining a concatenated index is how to choose the column order so it can support as many SQL queries as possible.
After that, there are even reasons to put the least selective column first. The Oracle database can, for example, use an INDEX SKIP SCAN in that case. But that’s an advanced feature. The most important factor...uhm, did I say that before?
The true essence of the myth is related to indexing independent range conditions—that is the only case where the selectivity should influence the index design (see Section 4.3).
Show some Love!
Buying the PDF supports our work on this site.
And you'll get a beautiful e-book.
And you'll get a beautiful e-book.
The myth is extraordinarily persistent in the SQL Server environment and appears even in the official documentation. The reason is that SQL Server keeps a histogram for the first index column only. But that means that the recommendation should read like "uneven distributed columns first" because histograms are not very useful for evenly distributed columns anyway.
I’m not the first to fight this myth. Here are some more references that disproof the myth:
Don’t automatically put the most selective term first in a concatenated index.
— Guy Harrison in "Oracle Performance Survival Guide"
One of the often-quoted fairy-tales about indexes was the directive to “put the most selective column first”. It was never a sensible rule of thumb (except, possibly, prior to version 6.0).
— Jonathan Lewis in "Oracle Scratchpad"
It’s useless to have the most selective column of the index on the left if very few queries filter on it. Queries that don’t filter on it, but do filter on the other columns of the index will have to scan, and scans are expensive.
— Gail Shaw in "SQL (Server) in the Wild"
Stay connected:
RSS Feed
Like on Facebook
Follow me on Twitter
Share at Google+
RSS FeedFlattr this! Follow me on TwitterShare at Google+Like on Facebook