Performance Tuning
SQL Server Myths
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
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.
Best practices for Troubleshooting Slow Running Queries
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
Best Practices Information for SQL Server Performance
External Articles on Server Performance
SQL Pagination Optimization with CTEs
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.
