Dave Heavy Industries » microsoft sql server http://www.daveheavyindustries.com Dave Heavy Industries - blog Mon, 12 Aug 2013 00:24:10 +0000 en-US hourly 1 http://wordpress.org/?v=3.6 MS SQL Server – index fragmentation http://www.daveheavyindustries.com/2011/02/07/ms-sql-server-index-fragmentation/ http://www.daveheavyindustries.com/2011/02/07/ms-sql-server-index-fragmentation/#comments Sun, 06 Feb 2011 23:03:05 +0000 admin http://wp.daveheavyindustries.com/?p=21 Sometimes it doesn't make sense to rebuild all of your indexes as part of a maintenance plan. You may have mirroring running with large db tables, and your indexes may be several GB. As part of your maintenance schedule, I recommend manually finding fragmented indexes and rebuilding them yourself (or scripting this)

To do this you, you need to locate the indexes -- anything over 50% can be considered a problem.

SELECT ps.database_id, ps.OBJECT_ID,
ps.index_id, b.name,
ps.avg_fragmentation_in_percent
FROM sys.dm_db_index_physical_stats (DB_ID(), NULL, NULL, NULL, NULL) AS ps
INNER JOIN sys.indexes AS b ON ps.OBJECT_ID = b.OBJECT_ID
AND ps.index_id = b.index_id
WHERE ps.database_id = DB_ID()
ORDER BY ps.OBJECT_ID
GO

And then defrag those indexes

DBCC IndexDefrag ('DBNAME','TABLENAME','INDEXNAME' )

http://msdn.microsoft.com/en-us/library/aa258286(SQL.80).aspx

or a full rebuild with

DBCC DBREINDEX ('dbname.ns.tablename','INDEXNAME' )

http://msdn.microsoft.com/en-us/library/aa258828(SQL.80).aspx

]]>
http://www.daveheavyindustries.com/2011/02/07/ms-sql-server-index-fragmentation/feed/ 0