Re: Database size growing over time and leads to performance impact

Поиск
Список
Период
Сортировка
От Alvaro Herrera
Тема Re: Database size growing over time and leads to performance impact
Дата
Msg-id 20100331204757.GE3284@alvh.no-ip.org
обсуждение исходный текст
Ответ на Re: Database size growing over time and leads to performance impact  (Scott Carey <scott@richrelevance.com>)
Список 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 по дате отправления:

Предыдущее
От: Robert Haas
Дата:
Сообщение: Re: Database size growing over time and leads to performance impact
Следующее
От: raghavendra t
Дата:
Сообщение: How to fast the REINDEX