Created
February 16, 2018 14:38
-
-
Save richardbasile/ff3f1a1186cd2184fa4eb06cfed36cc6 to your computer and use it in GitHub Desktop.
SQL Server - Statistics
This file contains hidden or 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
SELECT object_name(object_id) AS tableName | |
, [name] AS indexName | |
, stats_date(object_id, index_id) AS statsUpdated | |
FROM sys.indexes | |
ORDER BY 1, 2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment