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

查看索引碎片和维护

时间:2018-05-11 15:36:55      阅读:124      评论:0      收藏:0      [点我收藏+]

标签:physical   and   UI   nta   查看   null   avg   sel   stat   

SELECT  a.index_id ,
        b.name ,
        a.avg_fragmentation_in_percent
FROM    sys.dm_db_index_physical_stats(DB_ID(), OBJECT_ID(‘‘),
                                       NULL, NULL, NULL) as a
        JOIN sys.indexes as b ON a.object_id = b.object_id
                              AND b.index_id = a.index_id
 
当 5%<avg_fragmentation_in_percent<30% , 可以使用 alter index reorganize 重新组织索引。
avg_fragmentation_in_percent>30 ,应当使用 alter index rebuild 语句重新生成索引。

查看索引碎片和维护

标签:physical   and   UI   nta   查看   null   avg   sel   stat   

原文地址:https://www.cnblogs.com/wangyi666/p/9024680.html

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