--查看一个表的索引信息
declare @table_id int
set @table_id=object_id('tablename')
dbcc showcontig(@table_id)

SqlServer重建索引_数据库



- 扫描密度 [最佳计数:实际计数].......: 69.57% [16:23]

从上面命令的执行结果可以看的出来,Best count为16 而Actual Count为23,密度为69.57%(16/23)。这表明表有分块,需要重构表索引。

--查看本数据库中的所有索引信息
DBCC SHOWCONTIG



--重建索引
dbcc dbreindex(tablename,'',90)

SqlServer重建索引_bc_02

- 扫描密度 [最佳计数:实际计数].......: 100.00% [17:17]

扫描密度  100.00%