Created
March 17, 2015 16:00
-
-
Save JustinMcNamara74/521d25421c907580910f to your computer and use it in GitHub Desktop.
#MSSQL SQL Command to view index information.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- Alter_Index information | |
SELECT DatabaseName, | |
SchemaName, | |
ObjectName, | |
CASE WHEN ObjectType = 'U' THEN 'USER_TABLE' WHEN ObjectType = 'V' THEN 'VIEW' END AS ObjectType, | |
IndexName, | |
CASE WHEN IndexType = 1 THEN 'CLUSTERED' WHEN IndexType = 2 THEN 'NONCLUSTERED' WHEN IndexType = 3 THEN 'XML' WHEN IndexType = 4 THEN 'SPATIAL' END AS IndexType, | |
PartitionNumber, | |
ExtendedInfo.value('(ExtendedInfo/PageCount)[1]','int') AS [PageCount], | |
ExtendedInfo.value('(ExtendedInfo/Fragmentation)[1]','float') AS Fragmentation, | |
CommandType, | |
Command, | |
StartTime, | |
EndTime, | |
CASE WHEN DATEDIFF(ss,StartTime, EndTime)/(24*3600) > 0 THEN CAST(DATEDIFF(ss,StartTime, EndTime)/(24*3600) AS nvarchar) + '.' ELSE '' END + RIGHT(CONVERT(nvarchar,EndTime - StartTime,121),12) AS Duration, | |
ErrorNumber, | |
ErrorMessage | |
FROM dbo.CommandLog | |
WHERE CommandType = 'ALTER_INDEX' | |
ORDER BY StartTime DESC |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment