Does the ANALYZE command have any downsides (except a slighty larger db)? If not, why is not executed by default?

link|improve this question

74% accept rate
feedback

1 Answer

up vote 0 down vote accepted

Short answer: it may take more time to calculate than time saved.

Unlike indices the ANALYZE-statistics are not kept up-to-date automatically when data is added or updated. You should rerun ANALYZE any time a significant amount of data has been added of updated.

link|improve this answer
I already knew that. So I guess it's up to the programmer when to decide if the tradeoff between slow inserts/fast queries is worth it. – Joshua Sep 29 '11 at 9:32
feedback

Your Answer

 
or
required, but never shown

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