Fill Factors on Indexes – What does that mean?
In SQL Server, the fill factor is a configuration option that determines how much space is left on each page of an index when it… Read More »Fill Factors on Indexes – What does that mean?
In SQL Server, the fill factor is a configuration option that determines how much space is left on each page of an index when it… Read More »Fill Factors on Indexes – What does that mean?
Today on the tuning minute on the SQL Data Partners Podcast, we discussed duplicate indexes, which lead me to think more about and and write this post.
You know there are many different ways of doing things in SQL Server, and often times you can argue that one way or the other is better, and given the right situation anything might be a good idea. However duplicate indexes are a different story.
When I talk about duplicate indexes, what I mean is 2 or more indexes on the same table that are exactly the same columns. Something like this:
CREATE NONCLUSTERED INDEX [IX_LastName] ON [dbo].[Customer] ( [Lastname] ASC ); CREATE NONCLUSTERED INDEX [dta123123123_LastName] ON [dbo].[Customer] ( [Lastname] ASC );Two indexes on exactly the same column. There is nothing to be gained here.