What are some references, lessons and or best practices for SQL optimization training?

I looked a long time for resources to help me understand exactly how the query optimizer worked, and how to really make sense of the query plans. I finally found this.

I looked a long time for resources to help me understand exactly how the query optimizer worked, and how to really make sense of the query plans. I finally found this: T-SQL Querying, by Itzik Ben-Gan For Sql Server 2005, I haven't found anything else that gets close.

SQL Server Query Performance Tuning Distilled by Sajal Dam.

Learn BerkeleyDB. It will force you to learn the low level details of how databases work (to an extent). As someone with multiple years of SQL Server behind me, learning BDB took me to a new level.

There is a ton of knowledge that translates across multiple platforms (i.e. Locality of data, effects of various file formats, disk cluster specifics, etc). I'll warn you that it's not for the faint of heart.

Also, make sure you pick up a book on BDB if you want to attempt this. Learning strictly from the reference material doesn't work so well.

Best 3 tips from my own experience: Index all columns you are going to join tables on Specify the fields you are actually going to retrieve, rather than "SELECT * FROM..." Use SQL aggregate functions rather than rolling your own. Common mistake: Opening a recordset and using a "Count" property of the recordset, rather than using "SELECT COUNT(*)..." I know this isn't a full fledged resource or anything, but it will get you started. Good web resource: http://www.sqlteam.com/tag/sql-server-performance-tuning.

The Guru's Guide books are quite a good intermediate-advanced level SQL Server resource. In particular, the third one in this series has a fairly detailed architectural dissection of SQL Server 2000, which might give you the sort of insight you're looking for.

I am just learning more SQL for my job (I knew a little before, but am working on something which requires a lot of database interaction). I'm reading: SQL for Smarties by Joe Celko, and the SQL Cookbook by Anthony Molinaro. If you were choosing one, I'd go with SQL for Smarties, as it has more theory in it and gives a broader view, whereas the cookbook is more "here is a specific problem and how you would solve it in each of the major db applications.

I would check out The Art of SQL By Stephane Faroult and Peter Robson from O'Reilly. This gives a great lookinto principles of data normalization and thus optimization.

You need to learn to read the query plan. You need to know how to pseudo-code the inner workings of an inner loop, merge join, and a hash join, amongst others. Query planning is a black art, but reading the plans is not so bad.

Look at the plans for everything you are going to run (make sure that you have a representative size sample of data and current stats. ) You might be able to make sense of what the black art is producing. Looking at the query plans quickly lets you know more about how the database works, and when it is going to do something less than efficient.

Take those inefficient points, and look at them. Look at the method it chose. An index may or may not change the plan (if it doesn't help, you can always drop it.) Learn the differences between B-Tree, R-Tree, and bit mask indexes, not just when they are recommended, but also how they are structured and how they work, so you will know WHY they are recommended.

The only real way I have found to learn it is to do it. The only exception to the rule is Oracle 9 and newer sometimes chooses Merge Join Cartesian for no apparent reason. Once again, black art.

SQL Server Query Performance Tuning Distilled by Sajal Dam is a good book. From my experience several things besides what have already been said come to mind. First avoid cursors at all costs especially in inserts, deletes, updates or triggers!

Replace subqueries with derived tables. Denormalize if need be, especially if you need to join to two or three other large tables just to get something that you will need in every query such as client id. Write sargable queries (google this if you don't know what that is.) Check out whether a temp table, table variable or derived table will be faster.

Avoid the use of functions.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions