I'm using SQL Server 2005 and the the Dynamic Management View sys.dm_db_missing_index_details
. It continues to tell me that Table1 really needs an index on ColumnX and ColumnY, but that index already exists! I've even dropped and re-created it a couple times to no avail.
More specifics: The view lists Column1 under equality_columns
. Column2 is listed under inequality_columns
, so the index I have created is:
create index IndexA on Table1 (Column1 asc, Column2 asc)
Isn't this exactly the index sys.dm_db_missing_index_details
is telling me I need?