重建表时处理sql索引的最佳做法是什么

时间:2016-03-03 05:06:46

标签: sql sql-server tsql indexing

我有一个存储过程,将在一夜之间构建一个表。

第一步是截断,因为我无法保证现有记录不会被更新,因此擦除和重建是最简单的选择。

我喜欢的建议是指数的最佳实践。我应该在开始时删除索引然后再构建它吗?或者有更好的方法。该表中将有大约300,000条记录,7列

1 个答案:

答案 0 :(得分:1)

以下是一些可能对您有帮助的测试:

test1:
1.truncate table and don't delete indexes
2.insert data and check speed
3.check fragmentation

test2:
1.Truncate table
2.insert data and check speed
3.create indexes and check fragmentation


test1:
--insert data and check speed

delcare @id int=0
select current_timestamp;

while(@id<=1000000)
begin

insert into indextest
select @id,newid(),case when @id%10=0 then 1 else @id end;

set @id=@id+1
end

select current_timestamp;


--check fragmentation
--now check fragmentation
SELECT object_id, index_id, avg_fragmentation_in_percent, page_count 
FROM sys.dm_db_index_physical_stats(DB_ID(‘AdventureWorks2016’), OBJECT_ID(‘indextest’), NULL, NULL, NULL);


test2:
----truncate table
truncate table indextest

--drop indexes
drop index idx_id on indextest;
drop index nci_idx  on indextest;


---now insert data
delcare @id int=0
select current_timestamp;

while(@id<=1000000)
begin

insert into indextest
select @id,newid(),case when @id%10=0 then 1 else @id end;

set @id=@id+1
end

select current_timestamp;

--create index
create clustered index idx_id on indextest(id);

create non clustered index nci_idx on indextest(addres);

---check fragmentation:
SELECT object_id, index_id, avg_fragmentation_in_percent, page_count 
FROM sys.dm_db_index_physical_stats(DB_ID(‘AdventureWorks2016’), OBJECT_ID(‘indextest’), NULL, NULL, NULL);

<强>要点:
索引已存在时

插入数据 3:23秒,插入后碎片化 enter image description here

当我们在数据加载后删除并重新创建索引时:

插入速度:** 2:44秒
**碎片:
enter image description here

也就是说,我的测试取决于最佳日志增长设置,磁盘速度。此外,您可能不会担心碎片,碎片只会影响范围扫描。我建议根据您的表使用情况删除和重新创建索引。