Performance Tuning

SQL Server Myths

0
Your rating: None

The PSS Team blog (Bob Dorr wrote article) has a great discussion on a couple of common myths for SQL Server performance:

  • SQL Server Uses One Thread Per Data File
  • A Disk Queue Length greater than 2 indicates an I/O bottleneck

 http://blogs.msdn.com/psssql/archive/2007/02/21/sql-server-urban-legends-discussed.aspx
Summary notes from article:

Excellent intro to reading execution plans

0
Your rating: None

Grant wrote an excellent introductory article on execution plan basics and has a more detailed ebook for sale on lulu.com. http://www.simple-talk.com/sql/performance/execution-plan-basics. Code listing link.

TCP Optimization for Windows

0
Your rating: None

 

Your NIC card configuration settings maybe the cause of slow file copies over your wide area network (WAN). Also, know that Windows Explorer file copy is designed to throttle its network usage, so use Robocopy, Richcopy, FTP, etc instead.

 

Best practices for Troubleshooting Slow Running Queries

5
Your rating: None Average: 5 (1 vote)

MS SQL Community Worldwide has a great summary article on best practices on troubleshooting performance with sql queries including links to other great articles on the subject.

SQL Performance

0
Your rating: None

Best Practices Information for SQL Server Performance

 External Articles on Server Performance

SQL Pagination Optimization with CTEs

0
Your rating: None

Since many of us write sql code for websites, I thought I would share this performance tip I found while improving a proc to get list with start and end positions using row numbers - what I am calling pagination.