Re: Database size growing over time and leads to performance impact - Mailing list pgsql-performance

From Alvaro Herrera
Subject Re: Database size growing over time and leads to performance impact
Date
Msg-id 20100331204757.GE3284@alvh.no-ip.org
Whole thread Raw
In response to Re: Database size growing over time and leads to performance impact  (Scott Carey <scott@richrelevance.com>)
List pgsql-performance
Scott Carey wrote:
>
> On Mar 27, 2010, at 6:35 AM, Andy Colson wrote:
> >
> > Dont "VACUUM FULL", its not helping you, and is being removed in newer versions.
> >
>
> Off topic:  How is that going to work?  CLUSTER doesn't work on tables
> without an index.  I would love to be able to CLUSTER on some column
> set that doesn't necessarily have an index.

VACUUM FULL has been rewritten in 9.0 so that it uses the CLUSTER logic,
except that it doesn't require an index.

If you want to do it in earlier versions, you can use a no-op SET TYPE
command, like so:

ALTER TABLE foo ALTER COLUMN bar SET TYPE baz;

assuming that table foo has a column bar which is already of type baz.

--
Alvaro Herrera                                http://www.CommandPrompt.com/
PostgreSQL Replication, Consulting, Custom Development, 24x7 support

pgsql-performance by date:

Previous
From: Robert Haas
Date:
Subject: Re: Database size growing over time and leads to performance impact
Next
From: raghavendra t
Date:
Subject: How to fast the REINDEX