博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
改进SQL Server 性能 - 索引碎片重建
阅读量:5377 次
发布时间:2019-06-15

本文共 1619 字,大约阅读时间需要 5 分钟。

我们先来看一个用户表上的索引碎片情况: 

 

DBCC SHOWCONTIG scanning 'Lead' table...

Table: 'Lead' (1422628111); index ID: 1, database ID: 90
TABLE level scan performed.
- Pages Scanned................................: 135008
- Extents Scanned..............................: 17511
- Extent Switches..............................: 109860
- Avg. Pages per Extent........................: 7.7
- Scan Density [Best Count:Actual Count].......: 15.36% [16876:109861]
- Logical Scan Fragmentation ..................: 91.29%
- Extent Scan Fragmentation ...................: 30.66%
- Avg. Bytes Free per Page.....................: 3082.4
- Avg. Page Density (full).....................: 61.92%
DBCC SHOWCONTIG scanning 'Lead' table...
Table: 'Lead' (1422628111); index ID: 1, database ID: 90
TABLE level scan performed.
- Pages Scanned................................: 117309
- Extents Scanned..............................: 14847
- Extent Switches..............................: 36638
- Avg. Pages per Extent........................: 7.9
- Scan Density [Best Count:Actual Count].......: 40.02% [14664:36639]
- Logical Scan Fragmentation ..................: 31.94%
- Extent Scan Fragmentation ...................: 17.39%
- Avg. Bytes Free per Page.....................: 3385.8
- Avg. Page Density (full).....................: 58.17%
DBCC execution completed. If DBCC printed error messages, contact your system administrator.

 

碎片很严重,会导致性能低下, 可以重建索引来改进性能, 脚本如下:

use [AdvantureWorks]

declare @table_id int
set @table_id=object_id('Lead')

dbcc showcontig(@table_id)

dbcc dbreindex('SFNewOrg.dbo.Lead','',70)

 

转载于:https://www.cnblogs.com/yuzg/p/10682233.html

你可能感兴趣的文章
HDU - 4284 Travel(floyd+状压dp)
查看>>
1027 制作表格
查看>>
面向对象的介绍与特性
查看>>
typing-python用于类型注解的库
查看>>
HDU 5776 Sum
查看>>
winfrom 图片等比例压缩
查看>>
人工智能实验报告一
查看>>
用LR12录制app,用LR11跑场景,无并发数限制,已试验过,可行!
查看>>
python 多线程就这么简单(转)
查看>>
oracle 简述
查看>>
ajax如何向后台传递数组,在后台该如何接收的问题(项目积累)
查看>>
Solr之java实现增删查操作
查看>>
httpClient连接工具类实测可用
查看>>
CDOJ 1965 连通域统计【DFS】
查看>>
飞机大战3-我的飞机
查看>>
c#接口
查看>>
MyEclipse部署Jboss出现java.lang.OutOfMemoryError: PermGen space
查看>>
ZOJ 1133
查看>>
alibaba / zeus 安装 图解
查看>>
Ubuntu:让桌面显示回收站
查看>>