Skip site navigation (1) Skip section navigation (2)

Peripheral Links

Header And Logo

PostgreSQL
| The world's most advanced open source database.

Site Navigation

Search archives
  Advanced Search

Re: Relation of indices to ANALYZE


  • From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
  • To: Bill Moran <wmoran(at)potentialtech(dot)com>
  • Cc: pgsql-performance(at)postgresql(dot)org
  • Subject: Re: Relation of indices to ANALYZE
  • Date: Thu, 17 Jul 2003 14:27:16 -0400
  • Message-id: <5740.1058466436@sss.pgh.pa.us> <text/plain>

Bill Moran <wmoran(at)potentialtech(dot)com> writes:
> Specifically, I'm wondering if I should do
> the ANALYZE before or after I recreate the indexes, or whether it matters.

At the moment it does not matter --- ANALYZE computes statistics for
each column of a table regardless of what indexes exist.

There has been some talk of trying to compute statistics for the
contents of functional indexes.  Also, if we ever do anything about
computing multicolumn correlation statistics, we'd likely choose which
ones are worth computing based on the presence of multicolumn indexes.
So if you want to future-proof your code I'd recommend recreating the
indexes before you ANALYZE.

			regards, tom lane



Home | Main Index | Thread Index

Privacy Policy | About PostgreSQL
Copyright © 1996 – 2012 PostgreSQL Global Development Group