online poker

Disk Partition Alignment Best Practices For SQL Server

Posted by: Delamater  :  Category: SQL Server Performance Tuning

You know, Microsoft has been putting out a steady stream of pretty cool articles. This one, shows some quantifiable data as it relates to disk partitioning. (Thanks to my buddy Marc for pointing this one out to me!)

Read more…

Share/Save/Bookmark

Performance Analysis With Logs (PAL)

Posted by: Delamater  :  Category: SQL Server Performance Tuning

Have you guys seen the new Performance Analysis with Logs (PAL) tool posted by Microsoft at codeplex for tuning any type of system using performance counters? It’s pretty amazing to say the least. Read more…

Share/Save/Bookmark

How to Read the Log With TSQL (fn_dblog)

Posted by: Delamater  :  Category: Scripts

Hi again, 

This undocumented command in TSQL reads your log file and returns results. If you’ve ever used a log reader such as the one from APEX, or any other log reader for that matter, you will see the resemblence. Here’s the syntax on how to call this particular function:

 

SELECT *

FROM ::fn_dblog(NULL, NULL)

Read more…

Share/Save/Bookmark

Troubleshooting Performance Problems in SQL Server 2005

Posted by: Delamater  :  Category: SQL Server Performance Tuning, Scripts

Hi all, the following guide was taken from Microsoft’s best practices site. I’ve found out through the years that our product has been challenged by many of the performance problems listed in this guide, so it is definitely a good read!

You can find the Microsoft link here:

Here is the document for your reference as well: tshootperfprobs

Share/Save/Bookmark

How to Troubleshoot SQL Server CPU Bottlenecks

Posted by: Delamater  :  Category: SQL Server Performance Tuning, Scripts

Assuming you don’t have already have a fancy tool like Quest Software’s Performance Analyzer, or you aren’t using the Performance Dashboard offered by Microsoft, one way to quickly determine if you are CPU bound and what is actually utilizing your CPU utilization is to use a couple queries. I borrowed some information from the Microsoft document called Troubleshooting Performance Problems in SQL Server 2005 below. Read more…

Share/Save/Bookmark