I update indexes with full crawl per week. so when i run:
SELECT name AS index_name, STATS_DATE(OBJECT_ID, index_id) AS StatsUpdated FROM sys.indexes
Link: link text
I expect it to show me that all indexes have been updated this weekend. But there are a few entries that look like this:
index_name StatsUpdated clust 2005-10-14 01:36:26.140 clust 2005-10-14 01:36:26.140
What does it mean?
And, How do I know that the statistics are out of date (if in case I need to update the statistics more often with a full scan)
thanks.
source share