Automating SQL Execution Plan analysis

Posted by jchang on SQL Blog See other posts from SQL Blog or by jchang
Published on Mon, 22 Mar 2010 04:34:00 GMT Indexed on 2010/03/22 4:51 UTC
Read the original article Hit count: 440

Last year, I made my tool for automating execution plan analysis available on www.qdpma.com The original version could parse execution plans from sys.dm_exec_query_stats or dm_exec_cached_plans and generate a cross-reference of which execution plans employed each index. The DMV sys.dm_db_index_usage_stats shows how often each index is used, but not where, that is, which particular stored procedure or My latest version can now also 1) use the DMV sys.dm_exec_procedure_stats, 2) it can also get the...(read more)

© SQL Blog or respective owner

Related posts about DMV

Related posts about execution plans