Stored Procedure Provides UPDATE STATISTICS Report

Downloads
103455.zip

Knowing the last time the UPDATE STATISTICS statement was run against all the table indexes in a database can be useful information in and of itself, so I wrote sp_DBAGetUpdateStats to report this information. After this stored procedure retrieves the date and time of the last UPDATE STATISTICS run for each table index, it sorts the retrieved datetime values in reverse chronological order. Figure A shows sample results.

 

The sp_DBAGetUpdateStats stored procedure is designed to reside in the master database, but you can store it in another database as long the call to the stored procedure is fully qualified. If you store sp_DBAGetUpdateStats in the master database, though, you can invoke this stored procedure from the Query Analyzer regardless of the database the current session is using.

The sp_DBAGetUpdateStats stored procedure takes only one mandatory parameter: the name of the target database. For example, if you want to list the last time the UPDATE STATISTICS statement was run against all the table indexes in the AdventureWorks database, you'd use the command

EXEC sp_DBAGetUpdateStats<br>  'Adventureworks'

You can download sp_DBAGetUpdateStats by by clicking the Download the Code Here button near the top of the page. This stored procedure works on SQL Server 2008 and SQL Server 2005.

Please or Register to post comments.

IT/Dev Connections

Las Vegas
September 30th - October 4th

Paul ThurottOur Experts will show you:
• Common SQL Server
Problems
• Best Practices for T-SQL
• SQL Server Integration
Services
• Database Development

Come See Michael Otey & Tim Ford in Person!

Early Registration Now Open

From the Blogs
May 21, 2013
blog

A Common Misconception about MAXDOP

Out of the box, SQL Server is (and has been) able to take advantage of multiple processors/cores without any effort on behalf of administrators....More
May 9, 2013
blog

My ISO 8601-Compliant Signature 2

My family recently just "officially" announced that we're in the process of adopting a child from South Africa. We're quite excited, of course, but there's a ton of paperwork to do—along with the need for gobs of signatures....More
May 8, 2013
blog

Use SSIS for ETL from Hadoop

In this blog post, Mark Kromer walks you through using SSIS as a way to use ETL techniques using Microsoft's Hadoop on Windows (HDInsight) as a source using Hive connectors...More
SQL Server Pro Forums

Get answers to questions, share tips, and engage with the SQL Server community in our Forums.