Re: [SQL] index file's growing big - Mailing list pgsql-sql

From Tom Lane
Subject Re: [SQL] index file's growing big
Date
Msg-id 19232.952413236@sss.pgh.pa.us
Whole thread Raw
In response to Re: [SQL] index file's growing big  (Karl Denninger <karl@Denninger.Net>)
List pgsql-sql
Karl Denninger <karl@Denninger.Net> writes:
> Further, if the tables are large you want to use "vacuum analyze" to reorder
> the indices in a fashion that makes queries more efficient.

Just a side comment here: VACUUM ANALYZE has nothing whatever to do
with "reordering" indexes.  What it does that a plain VACUUM does
not do is gather statistics about the table contents (minimum, maximum,
and most common value of each column, at present).  These stats are then
used by the optimizer to make better planning choices.  At least we'd
like to think they're better, Lord willin' an' the creek don't rise...
        regards, tom lane


pgsql-sql by date:

Previous
From: "Zot O'Connor"
Date:
Subject: change owner of database -- answer
Next
From: "Seth Banks"
Date:
Subject: insert default into serial fields?