From: | paladine <yasinmalli(at)gmail(dot)com> |
---|---|
To: | pgsql-general(at)postgresql(dot)org |
Subject: | Re: reducing postgresql disk space |
Date: | 2010-05-27 10:21:01 |
Message-ID: | 28690159.post@talk.nabble.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-general |
> 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
Is that really reclaim disk space and how ??
For example; if 'my_counter' column is already integer,
why do I alter this column to integer again ?
Vick Khera wrote:
>
> On Wed, May 26, 2010 at 10:16 AM, paladine <yasinmalli(at)gmail(dot)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)
>
> --
> Sent via pgsql-general mailing list (pgsql-general(at)postgresql(dot)org)
> To make changes to your subscription:
> http://www.postgresql.org/mailpref/pgsql-general
>
>
--
View this message in context: http://old.nabble.com/reducing-postgresql-disk-space-tp28681415p28690159.html
Sent from the PostgreSQL - general mailing list archive at Nabble.com.
From | Date | Subject | |
---|---|---|---|
Next Message | paladine | 2010-05-27 10:21:13 | Re: reducing postgresql disk space |
Previous Message | Massa, Harald Armin | 2010-05-27 09:58:34 | Re: 110,000,000 rows |