Skip to content

Instantly share code, notes, and snippets.

@veysby
Created January 27, 2015 16:43
Show Gist options
  • Save veysby/fdeac9145d11f82a093d to your computer and use it in GitHub Desktop.
Save veysby/fdeac9145d11f82a093d to your computer and use it in GitHub Desktop.
MSSQL: index fragmentation
SELECT
OBJECT_NAME(ind.OBJECT_ID) AS TableName,
ind.name AS IndexName,
indexstats.index_type_desc AS IndexType,
indexstats.avg_fragmentation_in_percent
FROM sys.dm_db_index_physical_stats(DB_ID(), NULL, NULL, NULL, NULL) indexstats
INNER JOIN sys.indexes ind ON ind.object_id = indexstats.object_id AND ind.index_id = indexstats.index_id
WHERE indexstats.avg_fragmentation_in_percent > 30--You can specify the percent as you want
ORDER BY
indexstats.avg_fragmentation_in_percent DESC
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment