Tempdb best practices

Posted by Ravi Khanal on Aug 26, 2008

Tempdb database provides temporary space for various operations and is recreated every time SQL Server is restarted. It is a temporary database to store temporary tables, table variables, cursors, work tables, row versioning. Proper optimization of the tempdb database increases the performance of your SQL Server.

Some of the best Practices for tempdb are: Read the rest of this entry »


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 »