Built in Performance Reports in SQL Server 2005

Problem

Finding a good reporting mechanism for your SQL Server environment can be tedious and time-consuming-you can either write your own reporting application or choose a third-party solution. You may also have to install an instance of Reporting Services in your environment, depending on the needs of the application. SQL Server 2005 includes a number of built-in reports to assist you in troubleshooting and measuring performance.

Solution

As part of the installation of SQL Server 2005 a number of performance-related reports are installed. To get to these reports open the SQL Server Management Studio (SSMS) and connect to a SQL Server 2005 instance. If you don’t have an instance of Reporting Services installed then the icon will be disabled. Once connected, click on the server name and the Reports button in the Summary section on the right will enable:

Location of Reports for SQL Server 2005 in SSMS

When you click on the actual Reports button, the server generates a dashboard report, consisting of CPU Usage and Logical I/O Performed. These results are shown as pie charts:

Pie Charts on the Dashboard

In addition, there is other information, like product version and configuration settings:

Other information available on the dashbpard report

If you click on the arrow to the right of the Reports button, a number of other reports are displayed:

Other reports available
Report name Description
Configuration Changes HistoryShows all sp_configure and Trace Flag changes made
Schema Changes HistoryShows all DDL statements executed on the server
Scheduler HealthShows detailed information on each scheduler instance
Memory ConsumptionShows memory usage by various components (i.e., Memory Clerk, Cache Store, User Store)
Activity – All Blocking TransactionsShows all transactions that are blocking others
Activity – All CursorsProvides information on cursors by Sessions ID
Activity – Top CursorsProvides information on the Top 10 cursors that utilize the most CPU time and IO
Activity – All SessionsProvides information on all open sessions
Activity – Top SessionsProvides information on sessions that are oldest, use the most CPU time, number of reads or writes
Activity – Dormant SessionsShows users with sessions older than one hour
Top Transactions By AgeShows the longest running transactions
Top Transactions By Blocked Transaction CountShows transactions that are blocking the most transactions
Top Transactions By Locks CountShows the transactions holding the most significant locks
Performance – Batch Execution StatisticsShows information on batch statements currently in cache
Performance – Object Execution StatisticsShows information on object execution plans in cache
Performance – Top Queries By Average CPU TimeShows information on queries in cache that have the highest average CPU time
Performance – Top Queries By Average IOShows information on queries in cache that have utilized the highest average IO
Performance – Top Queries By Total CPU TimeShows information on queries in cache that have the highest total CPU time
Performance – Top Queries By Total IOShows information on queries in cache that have the highest total IO
Service Broker StatisticsProvides basic information on Transport, Network Connections, and Forwarded Messages by the Service Broker instance
Transaction Log Shipping StatusProvides the status of log shipping on the instance (for primary, secondary, and monitoring servers)

Next Steps

Leave a Reply

Your email address will not be published. Required fields are marked *