• sqlserver2005索引维护


    SET NOCOUNT ON;
    SELECT OBJECT_NAME(dt.object_id)      ,
           si.name                        ,
           dt.avg_fragmentation_in_percent,
           dt.avg_page_space_used_in_percent
    FROM
           (SELECT object_id                   ,
                   index_id                    ,
                   avg_fragmentation_in_percent,
                   avg_page_space_used_in_percent
           FROM    sys.dm_db_index_physical_stats (DB_ID(), NULL, NULL, NULL, 'DETAILED')
           WHERE   index_id <> 0
           ) AS dt --does not return information about heaps
           INNER JOIN sys.indexes si
           ON     si.object_id = dt.object_id
              AND si.index_id  = dt.index_id




    SELECT 'ALTER INDEX [' + ix.name + '] ON [' + s.name + '].[' + t.name + '] ' +
           CASE
                  WHEN ps.avg_fragmentation_in_percent > 15
                  THEN 'REBUILD'
                  ELSE 'REORGANIZE'
           END +
           CASE
                  WHEN pc.partition_count > 1
                  THEN ' PARTITION = ' + CAST(ps.partition_number AS nvarchar(MAX))
                  ELSE ''
           END,
           avg_fragmentation_in_percent
    FROM   sys.indexes AS ix
           INNER JOIN sys.tables t
           ON     t.object_id = ix.object_id
           INNER JOIN sys.schemas s
           ON     t.schema_id = s.schema_id
           INNER JOIN
                  (SELECT object_id                   ,
                          index_id                    ,
                          avg_fragmentation_in_percent,
                          partition_number
                  FROM    sys.dm_db_index_physical_stats (DB_ID(), NULL, NULL, NULL, NULL)
                  ) ps
           ON     t.object_id = ps.object_id
              AND ix.index_id = ps.index_id
           INNER JOIN
                  (SELECT  object_id,
                           index_id ,
                           COUNT(DISTINCT partition_number) AS partition_count
                  FROM     sys.partitions
                  GROUP BY object_id,
                           index_id
                  ) pc
           ON     t.object_id              = pc.object_id
              AND ix.index_id              = pc.index_id
    WHERE  ps.avg_fragmentation_in_percent > 10
       AND ix.name IS NOT NULL
  • 相关阅读:
    构造函数模式知识的扩展
    JavaScript 创建对象之单例、工厂、构造函数模式
    javaScript 计算两个日期的天数相差
    类似购物车循环判断方法
    spring的@Transactional注解详细用法
    String.getBytes()方法中的中文编码问题(转)
    spring 定时任务的 执行时间设置规则-----看完这篇就懂了
    为什么说Redis是单线程的?
    你应该知道的 RPC 原理
    关系型数据库与NoSQL的对比
  • 原文地址:https://www.cnblogs.com/bigmouthz/p/2447016.html
Copyright © 2020-2023  润新知