Re: reducing postgresql disk space

Поиск
Список
Период
Сортировка
От Vick Khera
Тема Re: reducing postgresql disk space
Дата
Msg-id AANLkTim00k7_HALPsFkW-StHZDqp5H91zdLUsmtuTil8@mail.gmail.com
обсуждение исходный текст
Ответ на reducing postgresql disk space  (paladine <yasinmalli@gmail.com>)
Ответы Re: reducing postgresql disk space  (paladine <yasinmalli@gmail.com>)
Список pgsql-general
On Wed, May 26, 2010 at 10:16 AM, paladine <yasinmalli@gmail.com> wrote:
> Anyone know another method ?
>

options to reclaim disk space:

vacuum full
dump/restore (sometimes faster than vacuum full)
cluster (not mvcc safe as far as i know)
alter a table column to its own type, like this:
 alter table foo alter column my_counter type integer; -- my_counter
is already an integer

sometimes all you need to do is reindex the table (or just the larger
indexes on the table selectively)

В списке pgsql-general по дате отправления:

Предыдущее
От: Thom Brown
Дата:
Сообщение: Re: reducing postgresql disk space
Следующее
От: paladine
Дата:
Сообщение: Re: reducing postgresql disk space