vote up 2 vote down star

I'm considering dropping an index from a table in a MSSQL 2005 instance. Is there a way that I can see which stored procedures might have statements that are dependent on that index?

flag

38% accept rate

3 Answers

vote up 0 vote down check

Nope. For one thing, index selection is dynamic - the indexes aren't selected until the query executes.

Barring "HINT", but let's not go there.

link|flag
you can still check if the index is being used by querying the sys.dm_db_index_usage_stats DMV, see my answer below – SQLMenace Jan 14 at 17:27
vote up -1 vote down

As le dorfier says, this depends on the execution plan SQL determines at runtime. I'd suggest setting up perfmon to track table scans, or keep sql profiler running after you drop the index filtering for the colum names you're indexing. Look for long running queries.

link|flag
you can still check if the index is being used by querying the sys.dm_db_index_usage_stats DMV, see my answer below – SQLMenace Jan 14 at 17:31
vote up 1 vote down

First check if the indexes are being used at all, you can use the sys.dm_db_index_usage_stats DMV for that, check the user_scans and the user_seeks column

read this Use the sys.dm db index usage stats dmv to check if indexes are being used

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.