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
XmlDocument document = new XmlDocument(); |
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
DECLARE @TableName VARCHAR(20) = NULL | |
SELECT TableName = OBJECT_NAME(S.object_id), | |
IndexName = I.name, | |
UserSeeks = S.user_seeks, | |
UserScans = S.user_scans, | |
UserLookups = S.user_lookups, | |
UserUpdates = S.user_updates , | |
IsPrimaryKey = i.is_primary_key | |
FROM sys.dm_db_index_usage_stats S |