views:

22

answers:

3

Hi

I need to optimize my large queries for fast performance. Is there any free tool for optimizing sql queries for sql server 2005?

+1  A: 

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.

David Hedlund
+1  A: 

You can use Estimated Execution Plan of Sql Server Management Studio to optimize your queries.

Here is one article for that:

Using SQL Server Management Studio for Query Optimization

Krunal
+1  A: 

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.

marc_s