Tips for Performance Monitoring

Posted by Ravi Khanal on Jul 20, 2008

Performance Tuning is the most important job you should perform as a Database Administrator. The most important thing you should consider for monitoring the performance of the server are:

Troubleshoot the Slow running queries:

                   DBCC SHOWCONTIG(’JOBS’)

                   DBCC INDEXDEFRAG(NORTHWIND, ORDERS, CUSTOMERS )

                   DBCC DBREINDEX(AUTHORS, ‘clustered index’, 70)

  Read the rest of this entry »