sys.dm_os_wait_stats

This is a short note explaining he sys.dm_os_wait_stats DMV. This DMV returns the following columns/values regarding waits encountered by executed threads: Wait_type waiting_tasks_count – The number of waits on this wait type. wait_time_ms – The total wait...

SQL Server Useful Reading

I have been having an IO subsystem issue recently and I found the whitepapers very useful and wanted to post the URLs here for future reference: SQL Server IO best Practices  SQL Server IO Basics – Chapter 2 SQL Server Pre-deployment IO best practices

SQL Server Storage

This is a short post on SQL Server storage best practice and what i have learned over the years… Much of this information can be found in Microsoft’s document on Storage Best Practice and this can be found here Test your setup before deployment. MS have useful utility...

SQL Server Default Trace

The default trace in SQL Server is something I have been experimenting with lately. It is a feature included in SQL Server 2005 and beyond and it is enabled by default when you install SQL Server. It has a number of uses from auditing to capacity planning and I will...