vote up 3 vote down star

I have a business user who tried his hand at writing his own SQL query for a report of project statistics (e.g. number of tasks, milestones, etc.). The query starts off declaring a temp table of 80+ columns. There are then almost 70 UPDATE statements to the temp table over almost 500 lines of code that each contain their own little set of business rules. It finishes with a SELECT * from the temp table.

Due to time constraints and 'other factors', this was rushed into production and now my team is stuck with supporting it. Performance is appalling, although thanks to some tidy up it's fairly easy to read and understand (although the code smell is nasty).

What are some key areas we should be looking at to make this faster and follow good practice?

flag

Add this info to the main article, and tag appropriately it if possible. – Adriano Varoli Piazza Nov 26 '08 at 15:34

10 Answers

vote up 3 vote down check

First off, if this is not causing a business problem, then leave it until it becomes a problem. Wait until it becomes a problem, then fix everything.

When you do decide to fix it, check if there is one statement causing most of your speed issues ... issolate and fix it.

If the speed issue is over all the statements, and you can combine it all into a single SELECT, this will probably save you time. I once converted a proc like this (not as many updates) to a SELECT and the time to run it went from over 3 minutes to under 3 seconds (no shit ... I couldn't believe it). By the way, don't attempt this if some of the data is coming from a linked server.

If you don't want to or can't do that for whatever reason, then you might want to adjust the existing proc. Here are some of the things I would look at:

  1. If you are creating indexes on the temp table, wait until after your initial INSERT to populate it.

  2. Adjust your initial INSERT to insert as many of the columns as possible. There are probably some update's you can eliminate by doing this.

  3. Index the temp table before running your updates. Do not create indexes on any of the columns targetted by the update statements until after their updated.

  4. Group your updates if your table(s) and groupings allow for it. 70 updates is quite a few for only 80 columns, and sounds like there may be an opportunity to do this.

Good luck

link|flag
vote up 1 vote down

Well, since the only thing you've told us about this Store Proc is that it has a 80+ column temp table, the only thing I can recommend is to remove that table, and rewrite the rest to remove the need for it.

link|flag
Thanks James, provided more detail in the question now. – Alex Angas Nov 26 '08 at 15:19
vote up 0 vote down

You should get a tool that allows you to get an explain plan of all queries your app will run. It is the best bang for the buck on an SQL heavy app for performace increases. If you read and react to what the Explain Plan is telling you. If you are on Oracle what we used to use was TOAD by Qwest(?) I think. It was a great tool.

link|flag
vote up 1 vote down

First thing I would do is check to make sure there is an active index maintenance job being run periodically. If not, get all existing indexes rebuilt or if not possible at least get statistics updated.

Second thing I would do is set up a trace (as described here) and find out which statements are causing the highest number of reads.

Then I would run in SSMS with 'show actual execution plan' and tally the results with the trace. From this you should be able to work out whether there are missing indexes that could improve performance.

EDIT: If you are going to downvote, please leave a comment as to why.

link|flag
vote up 1 vote down

If this is a report generating stored procedure, how often is it being run? If it's only necessary to run it once a day and is run during the night how much of an issue is the performance?

If it's not I'd recommend being careful in your choice to re-write it because there is a chance that you could muck up your figures.

Also it sounds like the sort of thing that should be pulled out into an SSIS package building up a new permanent table with the results so it only has to be run once.

Hope this makes sense

link|flag
vote up 0 vote down

I would recommend looking at the tables involved, the end result, and starting from scratch to see if the query can be done in a more efficient manner. Keep the query to verify that the new one is working exactly the same as the old one, but try to forget all methods used to obtain the end result.

link|flag
vote up 2 vote down

Just like any refactoring, make sure you have an automated way to verify your refactorings after each change (you can write this yourself using queries which check the development output against a known good baseline). That way, you are always matching the known good data. This will give you a high degree of confidence in the correctness of your approach when you enter the phase where you are deciding whether to switch over to your new version of the process and want to run side by side for a few iterations to ensure correctness.

I also like to log all the test batches and the run times of the processes within the batch, so I can tell if some particular process within the batch was adversely affected at some point in time. I can get average times for processes and see trends of improvement or spot potential problems. This also lets me identify the low-hanging fruit within the batch where I can make the most improvement.

link|flag
vote up -1 vote down

I would rewrite it from scratch.

You say that you understand what it supposed to do so it should not be that difficult. And I bet that the requirements for that piece of code will keep changing so if you do not rewrite it now you may end up maintaining some ugly monster

link|flag
This almost invariably results in buggy code. – LFSR Consulting Nov 26 '08 at 15:13
OK, but if you've already got buggy code, new code might at least be easier to maintain long-term. – sep332 Nov 26 '08 at 15:14
The poster didn't say it was buggy, only that performance was terrible. – Adriano Varoli Piazza Nov 26 '08 at 15:41
vote up 1 vote down

One thing you could try is to replace the temp table with a table variable. There are times when this is faster and times when it is not, you will have to just try it and see.

Look at the 70 update statements. It is possible to combine any of them? If the person writing did not use CASE statments, it might be possible to do fewer statements.

Other obvious things to look at - eliminate any cursors, change any subqueries to joins to tables or derived tables.

link|flag
vote up 2 vote down

There are then almost 70 UPDATE statements to the temp table over almost 500 lines of code that each contain their own little set of business rules. It finishes with a SELECT * from the temp table.

Actually this sounds like it can be followed and understood quite well, each update statement does one thing to the table with a specific purpose and set of business rules. I think that maintaining procedures of 500 lines of code with one or a couple of select statements that does "everything", built with 15 or so joins, and case statements etc scattered all over the place, is a lot harder to maintain. Although it would make for better performance..

It's a bit of a dilemma with SQL, that writing clear and concise code (using multiple updates, creating functions etc) always seems to have a big negative impact on performance. Trying to do everything at once, which is considered bad practice in other programming languages, seems to be the very core of set oriented languages.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.