重建索引的最佳方法

时间:2009-07-13 11:29:25

标签: sql sql-server database sql-server-2005

我正在尝试减少在SQL Server 2005上运行的数据库的所有索引中的碎片。 目前我正在尝试将ALTER INDEX与sp_MSforeachtable一起使用,以将其应用于所有表的所有索引:

sp_MSforeachtable "ALTER INDEX ALL ON ? REBUILD;"

但由于某些原因,这似乎并不总是有用吗? 如果我尝试单个索引,或者单个表的所有索引,那么碎片就会被清理掉,只是当我将它应用到整个数据库时,我才会遇到问题。

以前我可能使用过DBCC DBREINDEX,但是BOL声明它将在下一版本的SQL Server中删除,所以我不想使用它。

有人可以就解决清理数据库中所有索引的最佳方法向我提出任何建议吗?

由于

4 个答案:

答案 0 :(得分:5)

如果您希望完全自动化SQL Server索引维护,那么我认真地建议您查看Michelle Ufford的存储过程。

Index Defrag Script V4.1

我认为这是我读过的最好的索引维护脚本。

此脚本的最佳功能之一是您可以自定义您使用的阈值,以确定是否重建或重新组合给定的索引结构。

它还提供了限制过程使用的CPU核心数的选项。如果您打算在繁忙的实时生产数据库上运行脚本,这是一个很好的选择。

警告:与所有互联网可用代码一样,在生产环境中使用之前,请务必仔细测试。您也很可能也想要合并自己的自定义和功能。

答案 1 :(得分:3)

查看文章和随附的示例脚本,以便在SQL Fool(Michelle Ufford的网站)上处理此任务:

http://sqlfool.com/2009/06/index-defrag-script-v30/

这是一个很好的解决方案,可以一劳永逸地处理这个问题!

最佳做法建议是,如果您有5-30%的碎片,则重新组织索引,并且只有碎片碎片超过30%才重建它。您可以使用此脚本轻松使用这些阈值或指定自己的阈值。

马克

答案 2 :(得分:1)

或者您可以使用此处http://msdn.microsoft.com/en-us/library/ms188917.aspx

中的Microsoft索引重建脚本
    -- Ensure a USE <databasename> statement has been executed first.
SET NOCOUNT ON;
DECLARE @objectid int;
DECLARE @indexid int;
DECLARE @partitioncount bigint;
DECLARE @schemaname nvarchar(130); 
DECLARE @objectname nvarchar(130); 
DECLARE @indexname nvarchar(130); 
DECLARE @partitionnum bigint;
DECLARE @partitions bigint;
DECLARE @frag float;
DECLARE @command nvarchar(4000); 
-- Conditionally select tables and indexes from the sys.dm_db_index_physical_stats function 
-- and convert object and index IDs to names.
SELECT
    object_id AS objectid,
    index_id AS indexid,
    partition_number AS partitionnum,
    avg_fragmentation_in_percent AS frag
INTO #work_to_do
FROM sys.dm_db_index_physical_stats (DB_ID(), NULL, NULL , NULL, 'LIMITED')
WHERE avg_fragmentation_in_percent > 10.0 AND index_id > 0;

-- Declare the cursor for the list of partitions to be processed.
DECLARE partitions CURSOR FOR SELECT * FROM #work_to_do;

-- Open the cursor.
OPEN partitions;

-- Loop through the partitions.
WHILE (1=1)
    BEGIN;
        FETCH NEXT
           FROM partitions
           INTO @objectid, @indexid, @partitionnum, @frag;
        IF @@FETCH_STATUS < 0 BREAK;
        SELECT @objectname = QUOTENAME(o.name), @schemaname = QUOTENAME(s.name)
        FROM sys.objects AS o
        JOIN sys.schemas as s ON s.schema_id = o.schema_id
        WHERE o.object_id = @objectid;
        SELECT @indexname = QUOTENAME(name)
        FROM sys.indexes
        WHERE  object_id = @objectid AND index_id = @indexid;
        SELECT @partitioncount = count (*)
        FROM sys.partitions
        WHERE object_id = @objectid AND index_id = @indexid;

-- 30 is an arbitrary decision point at which to switch between reorganizing and rebuilding.
        IF @frag < 30.0
            SET @command = N'ALTER INDEX ' + @indexname + N' ON ' + @schemaname + N'.' + @objectname + N' REORGANIZE';
        IF @frag >= 30.0
            SET @command = N'ALTER INDEX ' + @indexname + N' ON ' + @schemaname + N'.' + @objectname + N' REBUILD';
        IF @partitioncount > 1
            SET @command = @command + N' PARTITION=' + CAST(@partitionnum AS nvarchar(10));
        EXEC (@command);
        PRINT N'Executed: ' + @command;
    END;

-- Close and deallocate the cursor.
CLOSE partitions;
DEALLOCATE partitions;

-- Drop the temporary table.
DROP TABLE #work_to_do;
GO

我将此脚本与SQL Server代理一起使用以自动完成任务。希望这会有所帮助。

答案 3 :(得分:0)

最安全,最便携的方法是删除索引并重新添加它们。