What techniques can be applied effectively to improve the performance of SQL queries? Are there any general rules that apply?
|
4
|
|
|
|
|
|
|
||
|
|
|
|
Use a with statment to handle query filtering. WITH A subqueries within a with statement may end up as being the same as inline views, or automatically generated temp tables. I find in the work I do, retail data, that about 70-80% of the time, there is a performance benefit. 100% of the time, there is a maintenance benefit. |
||
|
|
|
|
There are a couple of things you can look at to optimize your query performance.
|
||
|
|
|
|
Learn what's really going on under the hood - you should be able to understand the following concepts in detail:
|
||
|
|
|
|
|
||
|
|
|
|
The biggest thing you can do is to look for table scans in sql server query analyzer (make sure you turn on "show execution plan"). Otherwise there are a myriad of articles at MSDN and elsewhere that will give good advice. As an aside, when I started learning to optimize queries I ran sql server query profiler against a trace, looked at the generated SQL, and tried to figure out why that was an improvement. Query profiler is far from optimal, but it's a decent start. |
||
|
|
|
|
The obvious optimization for SELECT queries is ensuring you have indexes on columns used for joins or in WHERE clauses. Since adding indexes can slow down data writes you do need to monitor performance to ensure you don't kill the DB's write performance, but that's where using a good query analysis tool can help you balanace things accordingly. |
||
|
|
|
|
Make sure that you have the right indexes on the table. if you frequently use a column as a way to order or limit your dataset an index can make a big difference. I saw in a recent article that select distinct can really slow down a query, especially if you have no index. |
||
|
|
|
|
In Oracle you can look at the explain plan to compare variations on your query |
||
|
|
|
|
I think using SQL query analyzer would be a good start. |
||
|
|
