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?
|
|
|
|
|
|
|
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. |
||
|
|
|
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. |
||
|
|
|
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 |
||
|
|
