Increase Query Speed with Covering Indexes

  • Comments posted to this topic are about the item Increase Query Speed with Covering Indexes

    Steven Henderson
    The SQL Guy

  • Nice article Steve ! The concept is very clearly explained in the right order.

    I think if you can also add the "Disclaimer" which is a must I feel then the article shall be complete in all the aspect. Anyway, that's just a suggestion.

    "Indexes aren't free and has associated cost in terms of maintenance, storage, IO, Replication etc." and "One should think mindfully before creating an index". First preference to be given for making full use of the available indexes. What I've seen, adding new index become the only solution for the DBA's and the Developers when they encounter performance issue.

    Many a times no one really cares how many unused indexes they already have? and what will happen to this new covering index after they will change the filter/join/sort predicate or add any new column in SELECT. Although, you have covered few things as part of "Real life tips" which is really good.

  • Good article.  Thanks.

    Adding the syntax might help.  Looks pretty straightforward:

    CREATE NONCLUSTERED INDEX ix_PersonNameType ON Person.Person (LastName, FirstName, MiddleName) INCLUDE(PersonType)

Viewing 3 posts - 1 through 2 (of 2 total)

You must be logged in to reply to this topic. Login to reply