07 June 2007

SQL Server 2005 Performance Dashboard

For those of you looking to tune the SQL performance of your GP installation, take a look at the new Performance Dashboard from Microsoft. This is a free add on to SQL Server 2005 but you have to be running SP2.
So what is SQL Server 2005 Performance Dashboard? I'll let the MS folks tell you:
The SQL Server 2005 Performance Dashboard Reports are Reporting Services report files designed to be used with the Custom Reports feature introduced in the SP2 release of SQL Server Management Studio.
The reports allow a database administrator to quickly identify whether there is a current bottleneck on their system, and if a bottleneck is present, capture additional diagnostic data that may be necessary to resolve the problem.
For example, if the system is experiencing waits for disk IO the dashboard allows the user to quickly see which sessions are performing the most IO, what query is running on each session and the query plan for each statement.

Common performance problems that the dashboard reports may help to resolve include:
- CPU bottlenecks (and what queries are consuming the most CPU)
- IO bottlenecks (and what queries are performing the most IO).
- Index recommendations generated by the query optimizer
(missing indexes)
- Blocking
- Latch contention

The information captured in the reports is retrieved from SQL Server's dynamic management views. There is no additional tracing or data capture required, which means the information is always available and this is a very inexpensive means of monitoring your server.
Reporting Services is not required to be installed to use the
Performance Dashboard Reports.
Sounds pretty cool doesn't it! It looks good too!

The folks at SQL-Server-Performance.com have all the details on installing and using Performance Dashboard with lots of screen shots.
You can get the Performance Dashboard from Microsoft as well as SQL Server 2005 SP2.