Search Results

1
vote

What steps should be necessary to optimize a poorly performing query?

The execution plan is a great start and will help you figure out what part of your query you need to tackle. Once you figure out the where, it is time to tackle the how and why. Take a look …
0
votes

Need to speed up this query in SQL Server

You can search millions of records in a few seconds with good optimization. Though StingyJack is right in that without knowing the DDL, optimization of any query is tough. Things to do thou …