Hi
I need to optimize my large queries for fast performance. Is there any free tool for optimizing sql queries for sql server 2005?
Hi
I need to optimize my large queries for fast performance. Is there any free tool for optimizing sql queries for sql server 2005?
I wouldn't say free but considering you've got SQL Server 2005 already - and assuming it's not express edition or anything - I think you've already got the Tuning Advisor included in that package, which is an alright tool.
You can use Estimated Execution Plan
of Sql Server Management Studio to optimize your queries.
Here is one article for that:
If you already have SQL Server 2005 (anything except the Express editions), you already have SQL Profiler in the box. THat is your best bet to diagnose and fix SQL Server performance issues.
Here's a step-by-step introduction and also check out this video series Mastering SQL Server Profiler to learn how to use the tool.