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 ...
随机推荐
- 解决eclipse编辑js和html卡的问题
window -> Preference -> General -> Editors -> Text Editors -> HyperLinking -> 取消勾 ...
- LPC43xx系列使用IAP的注意事项
LPC43xx系列使用IAP的注意事项 Tags: LPC43xx IAP 单片机 LPC43xx IAP函数的调用 一般MCU的IAP是,厂商固化一段代码在芯片的某个区域,然后告诉你这个代码的入口地 ...
- iOS如何彻底避免数组越界
我们先来看看有可能会出现的数组越界Crash的地方: ? 1 2 3 4 5 6 7 - (void)tableView:(UITableView *)tableView didSelectRowAt ...
- python Unicode 编码解码
1 #将Unicode转换成普通的Python字符串:"编码(encode)" 2 unicodestring = u"Hello world" 3 utf8s ...
- 《转载》使用org.w3c.dom.Element的setTextContent()、getTextContent()方法时出现编译错误
今天在更新项目后进行编译时,出现如下错误一堆: 编译错误 Google之,在stackoverflow上看到如下的解决方法: I came here with the same problem. Ev ...
- rocketmq生产者部署的机器注意事项
报错: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'warningP ...
- 使用JHChart勾勒你想要的图表
前言 从2016年4月14日开始,本人着手开发了JHChart图表工具库.经过断断续续的开发,截止到现在,已经实现了折线图.柱状图.饼状图.环形图和表格样式的图表功能.为了方便使用,我已经将一个简单的 ...
- tomcat启动报错No UserDatabase component found under key UserDatabase
非正常关机,造成了tomcat下conf文件中的tomcat-user.xml文件异常,copy一个新的tomcat-user.xml覆盖就可以了.
- Oracle 和 SqlServer 的区别
--sql server 与 oracle的区别: --DBMS 数据库管理系统--1.数据类型不同. --sql server 的数据类型:int ,smallint ,char,var ...
- APP产品交互设计资源汇总(不断更新中...)
Axure RP 7 元件库 http://www.iaxure.com/tag/axure7-0%E5%85%83%E4%BB%B6%E5%BA%93 ios8组合元件库V1.2版 http://w ...