我有一个使用MS SQL Server Express数据库的WinForms C#应用程序。该应用程序部署在我们客户的PC上,并且他们没有计算机相关知识。
应用程序定期更新数据库,我看到索引文件上有很多碎片。如何随着时间的推移保持数据库健康/响应?
我正在考虑编写一个存储过程来重组每个索引,但我缺乏t-sql技能;有人能引导我朝着正确的方向前进吗?
BAS
答案 0 :(得分:1)
如果您可以将表暂停一段时间,或者使用DBCC INDEXDEFRAG,请使用DBCC REINDEX选项。但是,IndexDefrag选项已被删除。您还可以在SQL 2005/2008中使用ALTER INDEX语句。
答案 1 :(得分:1)
编写可重用的存储过程会很好,可以使用最佳的DBA维护实践以编程方式执行我应该对数据库执行的所有操作。
与更新统计信息一样,检查页面错误,碎片整理,重新索引,收缩?,.....
像“让我的数据库健康”存储过程
任何拥有类似脚本的人都可以使用吗?
答案 2 :(得分:0)
还要确保您的数据库FILE不易碎片化。这当然很难做到,因为您不知道客户驱动器的布局是什么,但我建议以相当大的初始大小启动.MDB文件以防止在线重建,这会耗费时间和资源,并且经常导致文件级碎片化。
您的索引设计也会影响索引的碎片化程度。您需要确保插入到批次的索引具有适当的低FILLFACTOR以防止页面拆分。还要删除任何未使用的索引。
要对索引进行碎片整理,请使用DBCC DBREINDEX命令。
答案 3 :(得分:0)
我现在使用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
我在启动程序时运行它并检查我的主表是否具有超过70的avg_fragmentation_in_percent。如果是,我运行以下脚本。
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%