码迷,mamicode.com
首页 > 其他好文 > 详细

索引碎片统计

时间:2017-01-04 18:57:58      阅读:249      评论:0      收藏:0      [点我收藏+]

标签:重建索引   use   table   stat   physical   build   blog   fragment   技术分享   

SELECT index_type_desc,alloc_unit_type_desc,avg_fragmentation_in_percent,fragment_count,avg_fragment_size_in_pages,page_count,record_count,avg_page_space_used_in_percent
FROM sys.dm_db_index_physical_stats(DB_ID(‘advanced6‘),OBJECT_ID(‘Table_2‘),NULL,NULL,‘Sampled‘)

技术分享

 

当avg_fragmentation_in_percent 大于40%时,往往需要整理与重建索引,方法如下:
ALTER INDEX PK_Table_2 ON Table_2 REBUILD

索引碎片统计

标签:重建索引   use   table   stat   physical   build   blog   fragment   技术分享   

原文地址:http://www.cnblogs.com/xgyweb/p/6249561.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!