Skip to content

Instantly share code, notes, and snippets.

@richardbasile
Created February 16, 2018 14:38
Show Gist options
  • Save richardbasile/ff3f1a1186cd2184fa4eb06cfed36cc6 to your computer and use it in GitHub Desktop.
Save richardbasile/ff3f1a1186cd2184fa4eb06cfed36cc6 to your computer and use it in GitHub Desktop.
SQL Server - Statistics
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