程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> SqlServer數據庫 >> 關於SqlServer >> SQLServer中的索引碎片處理

SQLServer中的索引碎片處理

編輯:關於SqlServer


  SQLServer數據庫隨著使用時間的增長,會讓人覺得越來越慢,這個和你平時沒有合理的維護計劃有關系,定期處理索引碎片是一個必不可少的工作內容之一。 具體信息參考msdn

  http://msdn.microsoft.com/zh-cn/library/ms189858.ASPx 我工作中碰到一張表,有320萬記錄,數據表占用空間800多兆,所有索引碎片大於80%,甚至有100%,索引占用空間500兆,重新生成索引後占用空間減小到200多兆。 一個可以在SQL2005中測試的腳本

  --drop database db_index_test --建立測試環境

create database db_index_test
go
use db_index_test
go
create table tbTest(rownum int identity(1,1),id varchar(100),date datetime)
go
create index index_id on tbTest(id) go

  --插入測試數據,並適當刪除一部分數據

declare @i int
set @i=1
while @i<10
begin
insert into tbTest(id,date)
select newid(),getdate() from syscolumns
delete from tbTest where rownum%2=0
set @i=@i+1
end
go

  --檢查索引

SELECT avg_fragmentation_in_percent FROM sys.dm_db_index_physical_stats (DB_ID(), OBJECT_ID(N'tbTest'),    NULL, NULL, NULL) AS a   JOIN sys.indexes AS b ON a.object_id = b.object_id AND a.index_id = b.index_id where name='index_id'

  go --重建索引

alter index index_id on tbTest rebuild go

  --檢查索引

SELECT avg_fragmentation_in_percent FROM sys.dm_db_index_physical_stats (DB_ID(), OBJECT_ID(N'tbTest'),    NULL, NULL, NULL) AS a   JOIN sys.indexes AS b ON a.object_id = b.object_id AND a.index_id = b.index_id where name='index_id' --刪除測試環境 go use master go drop database db_index_test
go

  在sql的客戶端工具SQL Server Management Studio中也可以手動檢查並重建索引

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved