Call now: (800) 766-1884  


 Home


SQL Server Tips
SQL Server Training

SQL Server Consulting
SQL Server Support

Articles
Services
SQL Server Scripts
Scripts Menu



 

 

 

 
 

SQL Server index statistics script


SQL Server Scripts by Burleson Consulting
 

************************************************
-- last_index_stats
************************************************
The last time indexes were statistically updated can be checked
through use of the stats_date function. For example, to see a listing of indexes and the date of their last statistics update, the last_index_stats query can be executed:

select
   index_name = object_name(id) + '.' + name,
   stat_update_date = stats_date (id,indid),
   indid,
   rows
from
   sysindexes
  See code depot for full script
where
indid > 1 and
indid < 255 and
name not like '_WA_Sys%'
order by 1

 


 

 

 

image


 

 


 

 

 

 

Note: The pages on this site were created as a support and training reference for use by our staff of DBA consultants.  If you find it confusing, please exit this page.

Errata?  SQL Server technology is changing and we strive to update our SQL Server support information.  If you find an error or have a suggestion for improving our content, we would appreciate your feedback.  Just  e-mail:and include the URL for the page.
 


Burleson Consulting
SQL Server database support

 

Copyright © 1996 -  2006 by Burleson Enterprises, Inc. All rights reserved.

Hit Counter