vote up 0 vote down star
1

How to optimize queries which are already written?

flag

30% accept rate

5 Answers

vote up 1 vote down

If you can not change the them: Indexes and statistics.
So you don't optimize the query but their execution plan.

link|flag
vote up 0 vote down

See this previous question.

link|flag
vote up 4 vote down

Use EXPLAIN to see what's going on - what indexes are being used and so on.

link|flag
vote up 0 vote down

If you can't change the query then it really depends on what features are available on your database engine of choice. As Ovidiu said you can use indexes and generate usage statistics to see where the bottleneck is.

Otherwise you can employ techniques like materialised views or horizontal partitioning.

Before you start make sure you know what you're optimisation target is.

link|flag
vote up 0 vote down

IBM Informix Dynamic Server supports a feature that allows you to add optimizer directives to pre-existing SQL when it is executed (without modifying the application). Look up 'external directives' at the Informix web site for more information (or Google 'site:ibm.com informix external directives').

link|flag

Your Answer

Get an OpenID
or

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