sql server效能分析–索引使用效率評估

來源:互聯網
上載者:User

  dmv分析索引的使用方式,包括掃描次數,更新次數,有利於你評估設計的索引使用效率,sql server 2005的確比2000在效能分析上提高很多。

 user_seeks : 通過使用者查詢執行的搜尋次數。 
 個人理解: 此統計索引seek的次數

user_scans: 通過使用者查詢執行的掃描次數。 
 個人理解:此統計表掃描的次數,無索引配合
user_lookups: 通過使用者查詢執行的尋找次數。 
 個人理解:使用者通過索引尋找,在使用RID或叢集索引尋找資料的次數,對於堆表或聚集表資料而言
和索引配合使用次數
user_updates:  通過使用者查詢執行的更新次數。 
 個人理解:索引或表的更新次數

 

--- 使用很少的索引排在最先
declare @dbid int
select @dbid = db_id()
select objectname=object_name(s.object_id), s.object_id, indexname=i.name, i.index_id
            , user_seeks, user_scans, user_lookups, user_updates
from sys.dm_db_index_usage_stats s,
            sys.indexes i
where database_id = @dbid and objectproperty(s.object_id,'IsUserTable') = 1
and i.object_id = s.object_id
and i.index_id = s.index_id
order by (user_seeks + user_scans + user_lookups + user_updates) asc

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.