Is there a way to see what SQL objects from one data base use a certain index. But I do not want to have to see the execution plan for every object because I have a lot of stored procedures and views
PS. It's for SQL 2005
|
Is there a way to see what SQL objects from one data base use a certain index. But I do not want to have to see the execution plan for every object because I have a lot of stored procedures and views PS. It's for SQL 2005 |
||||
|
|
|
Database objects don't use an index, the queries do. A The index may or may not later be used by a query against this A decision of whether to use the index or not is made during the query parsing phase. Seeing execution plan is the only way to determine whether the query uses the index or not. |
|||
|
|
|
no, you can't...but you can see if indexes are being used by any query Here is such a query that will give you that info
some more info here Use the sys.dm db index usage stats dmv to check if indexes are being used your other option would be to parse the query_plan column from the query below
|
|||||||||
|
|
you can query the sys.indexes table which:
|
|||
|
I just wanted to add a comment but it seems everything script driven is broken today in my view of SO and I must add a full answer instead... In addition to the sys.dm_db_index_usage_stats that shows how indexes are actually used, SQL Server also keeps track of the missing indexes and offers DMVs that show what indexes would had been used by queries, had they been present. See http://msdn.microsoft.com/en-us/library/ms345405.aspx (Using Missing Index Information to Write CREATE INDEX Statements). You should also download the SQL Server 2005 Performance Dashboard Reports from http://www.microsoft.com/downloads/details.aspx?FamilyId=1d3a4a0d-7e0c-4730-8204-e419218c1efc&displaylang=en that make navigating all this information (used indexes, missing indexes etc) a walk in the park. |
|||
|
|