T-SQL Recipes之Index Defragmentation
The Problem
索引一直是优化查询性能的不二法门。其中一个最直接的问题便是当审查一个低性能查询语句时,检查索引是否在正确的地方或者加索引没有。运行一个batchjob查看索引碎片,必要时采取步骤优化索引碎片是日常维护程序中不可缺少的。
今天的主题便是如何判定数据库中的索引碎片和优化措施
我们经常会用到sys.dm_db_index_physical_stats表来查看索引信息
示例:
USE AdventureWorks2014
GO DECLARE @database_name VARCHAR(100) = 'AdventureWorks2014';
SELECT SD.name AS database_name ,
SO.name AS object_name ,
SI.name AS index_name ,
IPS.index_type_desc ,
IPS.page_count ,
IPS.avg_fragmentation_in_percent
FROM sys.dm_db_index_physical_stats(NULL, NULL, NULL, NULL, NULL) IPS
INNER JOIN sys.databases SD ON SD.database_id = IPS.database_id
INNER JOIN sys.indexes SI ON SI.index_id = IPS.index_id
INNER JOIN sys.objects SO ON SO.object_id = SI.object_id
AND IPS.object_id = SO.object_id
WHERE alloc_unit_type_desc = 'IN_ROW_DATA'
AND index_level = 0
AND SD.name = @database_name
ORDER BY IPS.avg_fragmentation_in_percent DESC;
当知道索引碎片信息以后,我们应该如何优化呢?或者在任何数据库中查看索引碎片和优化呢?
The Solution
优化索引有两种方案
- Index Rebuild:
When an index is rebuilt , it is completely replaced with a new copy of the index, built from scratch as though
it were just newly created. In SQL Server Standard edition, this is an offline operation, meaning that it can
cause contention while running.- Index Reorganization:
Reorganizing an index results in cleanup at the leaf level, reordering pages and reapplying the fill factor as
necessary. This operation is always online, regardless of the edition of SQL Server you are running and can
be interrupted at any time with no ill effects.
现在我们通过百分比来判定索引是rebulid还是reorganization
IF OBJECT_ID('dbo.index_maintenance_demo','P') IS NOT NULL
BEGIN
DROP PROCEDURE dbo.index_maintenance_demo;
END
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE PROCEDURE dbo.index_maintenance_demo
@reorganization_percentage TINYINT = 10 ,
@rebuild_percentage TINYINT = 35 ,
@print_results_only BIT = 1
AS
BEGIN
DECLARE @sql_command NVARCHAR(MAX) = '';
DECLARE @parameter_list NVARCHAR(MAX) = '@reorganization_percentage TINYINT, @rebuild_percentage TINYINT'
DECLARE @database_name NVARCHAR(MAX);
DECLARE @database_list TABLE
(
database_name NVARCHAR(MAX) NOT NULL
);
INSERT INTO @database_list
( database_name
)
SELECT name
FROM sys.databases
WHERE databases.name NOT IN ( 'msdb', 'master', 'TempDB',
'model','ReportServer$SQL2014' );
CREATE TABLE #index_maintenance
(
database_name NVARCHAR(MAX) ,
schema_name NVARCHAR(MAX) ,
object_name NVARCHAR(MAX) ,
index_name NVARCHAR(MAX) ,
index_type_desc NVARCHAR(MAX) ,
page_count BIGINT ,
avg_fragmentation_in_percent FLOAT ,
index_operation NVARCHAR(MAX)
);
SELECT @sql_command = @sql_command + '
USE [' + database_name + ']
INSERT INTO #index_maintenance
( database_name ,
schema_name ,
object_name ,
index_name ,
index_type_desc ,
page_count ,
avg_fragmentation_in_percent ,
index_operation
)
SELECT CAST(SD.name AS NVARCHAR(MAX)) AS database_name ,
CAST(SS.name AS NVARCHAR(MAX)) AS schema_name ,
CAST(SO.name AS NVARCHAR(MAX)) AS object_name ,
CAST(SI.name AS NVARCHAR(MAX)) AS index_name ,
IPS.index_type_desc ,
IPS.page_count ,
-- Be sure to filter as much as possible...this can return a lot of data if you dont filter by database and table.
IPS.avg_fragmentation_in_percent ,
CAST(CASE WHEN IPS.avg_fragmentation_in_percent >= @rebuild_percentage
THEN ''REBUILD''
WHEN IPS.avg_fragmentation_in_percent >= @reorganization_percentage
THEN ''REORGANIZE''
END AS NVARCHAR(MAX)) AS index_operation
FROM sys.dm_db_index_physical_stats(NULL, NULL, NULL, NULL, NULL) IPS
INNER JOIN sys.databases SD ON SD.database_id = IPS.database_id
INNER JOIN sys.indexes SI ON SI.index_id = IPS.index_id
INNER JOIN sys.objects SO ON SO.object_id = SI.object_id
AND IPS.object_id = SO.object_id
INNER JOIN sys.schemas SS ON SS.schema_id = SO.schema_id
WHERE alloc_unit_type_desc = ''IN_ROW_DATA''
AND index_level = 0
AND SD.name = ''' + database_name + '''
AND IPS.avg_fragmentation_in_percent >= @reorganization_percentage
AND SI.name IS NOT NULL -- Only review index, not heap data.
AND SO.is_ms_shipped = 0 -- Do not perform maintenance on system objects
ORDER BY SD.name ASC;'
FROM @database_list
WHERE database_name IN ( SELECT name FROM sys.databases );
EXEC sp_executesql @sql_command, @parameter_list,
@reorganization_percentage, @rebuild_percentage;
SELECT @sql_command = '';
SELECT @sql_command = @sql_command + '
USE ' + QUOTENAME(database_name) + '
ALTER INDEX ' + QUOTENAME(index_name) + ' ON ' + QUOTENAME(schema_name) + '.' + QUOTENAME(object_name) + ' '
+ index_operation + ';'
FROM #index_maintenance;
SELECT *
FROM #index_maintenance
ORDER BY avg_fragmentation_in_percent DESC;
IF @print_results_only = 1
BEGIN
PRINT @sql_command;
END
ELSE
BEGIN
EXEC sp_executesql @sql_command;
END
DROP TABLE #index_maintenance;
END
GO
然后运行SP得到以下结果
EXEC dbo.index_maintenance_demo @reorganization_percentage = 10, @rebuild_percentage = 35,
@print_results_only = 1;

打印出来的SQL如下:
USE [AdventureWorks2014]
ALTER INDEX [PK_ProductCostHistory_ProductID_StartDate] ON [Production].[ProductCostHistory] REBUILD;
USE [AdventureWorks2014]
ALTER INDEX [AK_ProductDescription_rowguid] ON [Production].[ProductDescription] REBUILD;
USE [AdventureWorks2014]
ALTER INDEX [PK_DatabaseLog_DatabaseLogID] ON [dbo].[DatabaseLog] REBUILD;
USE [AdventureWorks2014]
ALTER INDEX [PK_ProductInventory_ProductID_LocationID] ON [Production].[ProductInventory] REBUILD;
USE [AdventureWorks2014]
ALTER INDEX [PK_ProductListPriceHistory_ProductID_StartDate] ON [Production].[ProductListPriceHistory] REBUILD;
USE [AdventureWorks2014]
ALTER INDEX [PK_SpecialOfferProduct_SpecialOfferID_ProductID] ON [Sales].[SpecialOfferProduct] REBUILD;
USE [AdventureWorks2014]
ALTER INDEX [AK_SpecialOfferProduct_rowguid] ON [Sales].[SpecialOfferProduct] REBUILD;
USE [AdventureWorks2014]
ALTER INDEX [PK_StateProvince_StateProvinceID] ON [Person].[StateProvince] REBUILD;
USE [AdventureWorks2014]
ALTER INDEX [PK_ProductModelProductDescriptionCulture_ProductModelID_ProductDescriptionID_CultureID] ON [Production].[ProductModelProductDescriptionCulture] REBUILD;
USE [AdventureWorks2014]
ALTER INDEX [AK_BillOfMaterials_ProductAssemblyID_ComponentID_StartDate] ON [Production].[BillOfMaterials] REORGANIZE;
有了这个SP,以后我们的维护工作就轻便了许多。
T-SQL Recipes之Index Defragmentation的更多相关文章
- Caused by: java.sql.SQLException: Parameter index out of range (1 > number of parameters, which is 0
1.错误描述 [ERROR:]2015-05-05 16:35:50,664 [异常拦截] org.hibernate.exception.GenericJDBCException: error ex ...
- java.sql.SQLException:Column Index out of range,0<1
1.错误描述 java.sql.SQLException:Column Index out of range,0<1 2.错误原因 try { Class.forName("com.m ...
- java.sql.SQLException: Parameter index out of range (3 > number of parameters, which is 2).
java.sql.SQLException: Parameter index out of range (3 > number of parameters, which is 2). java. ...
- java.sql.SQLException: Parameter index out of range (1 > number of parameters, which is 0).
java.sql.SQLException: Parameter index out of range (1 > number of parameters, which is 0). at co ...
- java.io.IOException: java.sql.SQLException: ORA-01502: index 'BTO.PK_xxxxx' or partition of such index is in unusable state
最近由于数据库的全备出问题了,所以一直在观察. 刚好发现很多不需要的数据,就删了几百个G的数据吧. 今天突然就报这个问题. java.io.IOException: java.sql.SQLExcep ...
- sql server中index的REBUILD和REORGANIZE的区别及工作方式
sql server中index的REBUILD和REORGANIZE 转自:https://www.cnblogs.com/flysun0311/archive/2013/12/05/3459451 ...
- ylb:SQL 索引(Index)
ylbtech-SQL Server: SQL Server-SQL 索引(Index) SQL 索引(Index). ylb:索引(Index) 返回顶部 --=================== ...
- SQL Server 索引(index) 和 视图(view) 的简单介绍和操作
--索引(index)和视图(view)-- --索引(index)----概述: 数据库中的索引类似于书籍的目录,他以指针形式包含了表中一列或几列组合的新顺序,实现表中数据库的逻辑排序.索引创建在数 ...
- sql server中index的REBUILD和REORGANIZE
参考文献: http://technet.microsoft.com/en-us/library/ms188388.aspx 正文 本文主要讲解如何使用alter index来rebuild和reor ...
随机推荐
- 鼠标上下滑动总是放大缩小页面,按住ctrl+0
鼠标上下滑动总是放大缩小页面,可能是ctrl键失灵了,幸好键盘有两个ctrl键,按住ctrl+0,页面就正常了,吓死宝宝了,~~~~(>_<)~~~~
- linux配置网卡IP地址命令详细介绍及一些常用网络配置命令
linux配置网卡IP地址命令详细介绍及一些常用网络配置命令2010-- 个评论 收藏 我要投稿 Linux命令行下配置IP地址不像图形界面下那么方 便,完全需要我们手动配置,下面就给大家介绍几种配置 ...
- Winform自定义控件基础(二)
protected override void WndProc(ref Message m)
- Mac Vim + ctags 实现多目录跳转
set tags=tags; set autochdir :wq保存. 在源码根目录中输入ctags -R命令.后重启vim,打开src文件,就能使用Ctrl+] 或 g Ctrl+] 来实现跳转了. ...
- JqueryUI Dialog 加载动态页 部分页
问题:使用JqueryUIDialog 加载部分页,可以弹出对话框,但是在操作页面上的按钮是提示"dialog"找不到,思路是,先取到部分页加载到要dialog的Div上,在dia ...
- 阿里云直播PHP SDK如何使用
前一篇聊了聊关于阿里云直播,如何进行进行调试,ok,那这篇我们就聊一聊关于阿里云直播的SDK(当然是关于PHP的),基于下面的原因: 1.直播云没有单独的SDK,直播部分的SDK是直接封装在CDN的相 ...
- RecyclerView的使用之多种Item加载布局
精益求精,为了更加透彻熟练得掌握,本文再次给大家介石介绍下如何利用RecyclerView实现多Item布局的加载,多Item布局的加载的意思就是在开发过程中List的每一项可能根据需求的不同会加载不 ...
- SqlServer 2008登录时报错
登录SQLServer2008R2时提示如下错误: 在与 SQL Server 建立连接时出现与网络相关的或特定于实例的错误.未找到或无法访问服务器.请验证实例名称是否正确并且 SQL Server ...
- STL heap usage
简介 heap有查找时间复杂度O(1),查找.插入.删除时间复杂度为O(logN)的特性,STL中heap相关的操作如下: make_heap() push_heap() pop_heap() sor ...
- PHP之session与cookie
1.session与cookie的关系 众所周知,session是存储在服务器端,cookie是存储在客户端,如果禁用了浏览器的cookie功能,很多时候(除非进行了特殊配置)服务器端就无法再读取se ...