【问题标题】:Standalone app: keep the database healthy/responsive over time独立应用程序:随着时间的推移保持数据库健康/响应
【发布时间】:2008-10-27 09:33:19
【问题描述】:

我有一个使用 MS SQL Server Express 数据库的 WinForms C# 应用程序。该应用程序部署在我们客户的 PC 上,他们没有计算机相关知识。

应用程序定期更新数据库,我看到索引文件上有很多碎片。如何随着时间的推移保持数据库的健康/响应?

我正在考虑编写一个重新组织每个索引的存储过程,但我缺乏 t-sql 技能;有人可以引导我走向正确的方向吗?

基础

【问题讨论】:

    标签: sql-server winforms


    【解决方案1】:

    如果您可以让表在短时间内脱机,请使用 DBCC REINDEX 选项,或者使用 DBCC INDEXDEFRAG。虽然 IndexDefrag 选项已被弃用。您还可以在 SQL 2005/2008 中使用 ALTER INDEX 语句。

    【讨论】:

      【解决方案2】:

      如果能编写一个可重用的存储过程,该过程可以使用最佳 DBA 维护实践以编程方式对数据库执行我应该执行的所有操作,那就太好了。

      像更新统计信息、检查页面错误、碎片整理、重新索引、缩小?......

      就像一个“让我的数据库健康”的存储过程

      谁有这样的脚本可用?

      【讨论】:

        【解决方案3】:

        还要确保您的数据库文件不太容易出现碎片。这确实很难做到,因为您不知道客户驱动器的布局是什么,但我建议以相当大的初始大小开始您的 .MDB 文件,以防止在线重建,这会浪费时间和资源,并且经常导致文件级碎片。

        您的索引设计也会影响索引的碎片化程度。您需要确保要插入的索引具有适当低的 FILLFACTOR 以防止页面拆分。还要去掉所有没有被使用的索引。

        要对索引进行碎片整理,请使用DBCC DBREINDEX 命令。

        【讨论】:

          【解决方案4】:

          我现在使用 2 个 sql 脚本。

          SELECT 
              st.object_id AS objectid,
              st.index_id AS indexid,
              partition_number AS partitionnum,
              avg_fragmentation_in_percent AS frag,
              o.name,
              i.name
          FROM 
              sys.dm_db_index_physical_stats (DB_ID(), NULL, NULL , NULL, 'LIMITED') st
          join
              sys.objects o on o.object_id = st.object_id
          join 
              sys.indexes i on st.object_id = i.object_id and i.index_id=st.index_id
          

          我在启动程序时运行它并检查我的主表的 avg_fragmentation_in_percent 是否超过 70。如果是,我运行以下脚本。

          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.
          
          if ( object_id( 'tempdb..#work_to_do' ) is not null )
            DROP TABLE #work_to_do;
          
          -- Alleen indexen die meer dan x% gefragemteerd zijn
          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 > 5.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;
          
                  SET @command = N'ALTER INDEX ' + @indexname + N' ON ' + @schemaname + N'.' + @objectname + N' REBUILD WITH (FILLFACTOR = 90)';
                  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;
          

          此脚本对碎片率超过 5% 的所有表进行碎片整理

          【讨论】:

            猜你喜欢
            • 1970-01-01
            • 2013-03-11
            • 1970-01-01
            • 1970-01-01
            • 1970-01-01
            • 1970-01-01
            • 1970-01-01
            • 1970-01-01
            • 2011-11-14
            相关资源
            最近更新 更多