I wonder what are your most common sql optimization that you used.
|
|
|
Reducing the amount of data that is returned, by only returning the fields required and only returning the rows required. This is the most common, as you do it for every query that returns data. Adding indexes. This is not done as frequently, as some tables doesn't need any other index than the one created for the primary key. |
|||||||
|
|
My favorite list of tips (explained in detail here) is as follows
|
|||||||||||
|
|
By far and above: Making covering indexes A covering index includes all the columns that the query will need, thereby avoiding the need to do lookups on the results of an index seek. This will then avoid the system feeling like a scan could be quicker (which is remarkably quick considering the cost of lookups). But also worth mentioning: Having an index that will allow a merge join. A MERGE join is able to occur when joining two tables that are ordered by the join conditions. But of course, in saying 'table', we really mean 'index', right... Also - removing scalar functions and using table-valued functions instead... as scalar functions are not able to be simplified out. Also - putting a unique index on a column that you know to be unique, allowing the query optimizer to use this knowledge to make better optimization choices. Also applies to NOT NULL constraints. Also - using Binary collation when comparing strings that are in a known case, so that the system doesn't have to consider the different case options. Of course I could go on all day... Rob |
|||||||
|
|
Caching db output. Avoiding pressuring the database at all seems to be a prudent optimization. +1 memcached. |
||||
|
|
Maybe this isn't a sql query syntax optimisation, but more a storage optimisation. But i see it re-occur all the time & its a pet peeve. |
||||
|
|
|
1) I've yet to find a situation where
isn't improved by a LEFT JOIN to a derived table.
2) Don't sort the results on the server unless the consuming app is unable to do this itself. This applies less often to web apps, but for desktop apps the client PC usually has plenty of power available and can happily do a sort. 3) Use EXISTS instead of checking the Count of matching entries. 4) Don't get obsessed with doing a query in just one SELECT clause. Judicious use of table variables (and sometimes temporary tables) can massively reduce the rows processed. |
|||||||
|
|
The best optimisation I've ever had using SQL was to really understand what was needed to be done the data and REMOVE ton's of SQL from the query. The fastest query is the query that does not have to be run. REALLY THINK about what your doing to the data. Are you working row-by-row? (then use set based code).
Finally, PROFILE your queries (EXPLAIN PLAN or SQL PROFILER) and look at the "IO gets". Generally you want to reduce the number of GET's to a ratio something like 10 gets per output row. |
||||
|
|
|
Lowering transaction isolation levels to get around table locks for user queries. Not all the time, but for gui's showing general information it works great. |
||||
|
|
|
If you're talking common as in really common then Indexes are the first thing that pops up into my head. They are a powerful technique that are often misunderstood and quite often abused. Then I would place de-normalization which can add in quite a bit of performance for many databases. Query optimization is third and it helps a lot too. I use MySQL these days and Query logging helps a lot for optimization. Memcached is definitely not common, though caching of some sort is a part of many websites at the scripting end (ASP.Net or PHP). |
||||
|
|
|
Making sure tables are being joined in the correct order. |
|||||
|
|
The two most important things in my experience are fewer joins and less queries. Other than those there's lots of DB specific stuff, COUNT(*) is relatively slow on PgSQL, subselects are dog slow on MySQL, etc. |
||||
|
|
|
The biggest optimizations i used recently where quite simple. Keep as much of the business logic as close as possible to the sql server. Aka keep you business code on the same machine as the sql server. Let your business logic return as little as possible code back to the final client. Keep your SQL query's as 'short as possible' like Frost said, use single update statements over multiple statements. Only use transactions when you need them Create temp tables for partial joins to speed up the joins (dont forget to index them) |
||||
|
|
|
I have read all answers and I didn't found LIMIT and OFFSET usage hints. It is very common usage in pagination with "prev" and "next" links. But rendering such a display can consume more resources than the entire rest of the site. When offsetting large number items, query can become very slow. So avoid these queries.
Such methods uses Google, Twitter and other sites. In Google search there is no accurate number of results. There is only approximate number. Twitter doesn't allow user to view all past tweets. It shows only last n number (I can't remember how much). There is some link from MySQL performance blog. |
||||
|
|
|
Here is a website that goes through all the steps of optimizing queries. From researching execution plans to making the changes on the queries. It was written for people with just a basic knowledge of SQL. |
||||
|
|
|
|||||||||||||
|
|
Avoid the use of onboard functions like convertdate, stringreplace and such in your Views. If you can't make sure that the data is in a valid format use stored procedures which run reguallary to 'clean up' the data in your relevant tables. this is nasty, but it saves the views time i.e. keeps the user happy... ^^ |
||||
|
|
|
Couple of hints: Use
instead of
Also use 'IN' instead of 'OR' syntax |
|||||
|
|
Do not put constraints if not required as constraints will add an index, the more number of indexes, the more time it takes for data insertion. |
||||
|
|