When you have a query or stored procedure that needs performance tuning, what are some of the first things you try?
|
closed as not constructive by casperOne♦ Nov 28 '11 at 1:23
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
|
Here is the handy-dandy list of things I always give to someone asking me about optimisation. 99% of problems I have seen are caused by putting too many tables in a join. The fix for this is to do one join with fewer tables and cache the results in a temporary table. Then do the rest of the query joining on that table. Query Optimisation Checklist
|
||||
|
Slightly off topic but if you have control over these issues...
|
||||
|
|
|
||||
|
|
|
Assuming MySQL here, use EXPLAIN to find out what is going on with the query, make sure that the indexes are being used as efficiently as possible and try to eliminate file sorts. High Performance MySQL: Optimization, Backups, Replication, and More is a great book on this topic as is MySQL Performance Blog. |
|||||
|
|
Assure there are indexes available for your If your environment is a data mart or warehouse, indexes should abound for almost any conceivable query. In a transactional environment, the number of indexes should be lower and their definitions more strategic so that index maintenance doesn't drag down resources. (Index maintenance is when the leaves of an index must be changed to reflect a change in the underlying table, as with Also, be mindful of the order of fields in the index - the more selective (higher cardinality) a field, the earlier in the index it should appear. For example, say you're querying for used automobiles:
Price generally has higher cardinality. There may be only a few dozen colors available, but quite possibly thousands of different asking prices. Of these index choices,
This is because fewer cars will satisfy the price point than the color choice, giving the query engine far less data to analyze. I've been known to have two very similar indexes differing only in the field order to speed queries (firstname, lastname) in one and (lastname, firstname) in the other. |
||||
|
|
|
@Terrapin there are a few other differences between isnull and coalesce that are worth mentioning (besides ANSI compliance, which is a big one for me). |
||||
|
|
|
A trick I recently learned is that SQL Server can update local variables as well as fields, in an update statement.
Or the more readable version:
I've used this to replace complicated cursors/joins when implementing recursive calculations, and also gained a lot in performance. Here's details and example code that made fantastic improvements in performance: http://geekswithblogs.net/Rhames/archive/2008/10/28/calculating-running-totals-in-sql-server-2005---the-optimal.aspx |
||||
|
|
|
Look at the where clause - verify use of indexes / verify nothing silly is being done
|
||||
|
|
|
I'll generally start with the joins - I'll knock each one of them out of the query one at a time and re-run the query to get an idea if there's a particular join I'm having a problem with. |
||||
|
|
|
Sometimes in SQL Server if you use an OR in a where clause it will really jack with performance. Instead of using the OR just do two selects and union them together. You get the same results at 1000x the speed. |
||||
|
|
|
On all of my temp tables, I like to add unique constraints (where appropriate) to make indexes, and primary keys (almost always).
|
||||
|
|
|
I've made it a habit to always use bind variables. It's possible bind variables won't help if the RDBMS doesn't cache SQL statements. But if you don't use bind variables the RDBMS doesn't have a chance to reuse query execution plans and parsed SQL statements. The savings can be enormous: http://www.akadia.com/services/ora_bind_variables.html. I work mostly with Oracle, but Microsoft SQL Server works pretty much the same way. In my experience, if you don't know whether or not you are using bind variables, you probably aren't. If your application language doesn't support them, find one that does. Sometimes you can fix query A by using bind variables for query B. After that, I talk to our DBA to find out what's causing the RDBMS the most pain. Note that you shouldn't ask "Why is this query slow?" That's like asking your doctor to take out you appendix. Sure your query might be the problem, but it's just as likely that something else is going wrong. As developers, we we tend to think in terms of lines of code. If a line is slow, fix that line. But a RDBMS is a really complicated system and your slow query might be the symptom of a much larger problem. Way too many SQL tuning tips are cargo cult idols. Most of the time the problem is unrelated or minimally related to the syntax you use, so it's normally best to use the cleanest syntax you can. Then you can start looking at ways to tune the database (not the query). Only tweak the syntax when that fails. Like any performance tuning, always collect meaningful statistics. Don't use wallclock time unless it's the user experience you are tuning. Instead look at things like CPU time, rows fetched and blocks read off of disk. Too often people optimize for the wrong thing. |
||||
|
|
|
First step:
Look at the Query Execution Plan! SET STATISTICS IO ON |
||||
|
|
|
Running the query using WITH (NoLock) is pretty much standard operation in my place. Anyone caught running queries on the tens-of-gigabytes tables without it is taken out and shot. |
||||
|
|
In SQL Server, execution plan gets you the same thing - it tells you what indexes are being hit, etc. |
||||
|
|
|
Make sure your index lengths are as small as possible. This allows the DB to read more keys at a time from the file system, thus speeding up your joins. I assume this works with all DB's, but I know it's a specific recommendation for MySQL. |
||||
|
|
|
I look out for:
|
||||
|
|
Usually the first line inside my stored procedures, unless I actually need to use |
|||||||||||
|
|
In SQL Server, use the nolock directive. It allows the select command to complete without having to wait - usually other transactions to finish.
|
||||
|
|
Convert NOT IN queries to LEFT OUTER JOINS if possible. For example if you want to find all rows in Table1 that are unused by a foreign key in Table2 you could do this:
But you get much better performance with this:
|
||||
|
|
|
Remove cursors wherever the are not neceesary. |
||||
|
Remove function calls in Sprocs where a lot of rows will call the function. My colleague used function calls (getting lastlogindate from userid as example) to return very wide recordsets. Tasked with optimisation, I replaced the function calls in the sproc with the function's code: I got many sprocs' running time down from > 20 seconds to < 1. |
||||
|
|
|
Not necessarily a SQL performance trick per se but definately related: A good idea would be to use memcached where possible as it would be much faster just fetching the precompiled data directly from memory rather than getting it from the database. There's also a flavour of MySQL that got memcached built in (third party). |
||||
|
|
|
||||
|
|
|
I like to use
Over
When I don't need the multiple argument support that coalesce gives you. http://blog.falafel.com/2006/04/05/SQLServerArcanaISNULLVsCOALESCE.aspx |
||||
|
|
|
Don't prefix Stored Procedure names with "sp_" because system procedures all start with "sp_", and SQL Server will have to search harder to find your procedure when it gets called. |
|||||||||
|
Prevents dead locks where transactional integrity isn't absolutely necessary (which is usually true) |
||||
|
|
I always go to SQL Profiler (if it's a stored procedure with a lot of nesting levels) or the query execution planner (if it's a few SQL statements with no nesting) first. 90% of the time you can find the problem immediately with one of these two tools. |
||||
|
|