Re: VACUUM FULL vs dump & restore

From: Aldor <an(at)mediaroot(dot)de>
To: "Ilya A(dot) Kovalenko" <shadow(at)oganer(dot)net>
Cc: pgsql-sql(at)postgresql(dot)org
Subject: Re: VACUUM FULL vs dump & restore
Date: 2005-09-24 11:28:45
Message-ID: 4335386D.4070105@mediaroot.de
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

Another way how to do it with having access to the data in the same time
is to create a new table, named a little bit differently and do an:

insert into [table]2
select *
from [table];

Then switch to the second table.

Then you have to do on the first table the TRUNCATE and DROP.

For getting out which table is the actual one you can create a table
which holds the originate table name and the actual table name. When
using plpgsql you can check the table name before building the queries
and then build them with EXECUTE.

Be aware that you cannot do:

SELECT col1, col2
FROM gettablename('[table]');

Also be aware to switch back when you do the process again, so you dump
the data from the [table]2 to [table].

For my experience this way was faster then dump-truncate-restore on the
table.

Regards,

Aldor

Ilya A. Kovalenko wrote:
> Greetings,
>
> What advantages I lose, when using dump-truncate-restore (table
> or whole DB) instead of performing VACUUM FULL ?
> In both cases I have no access to data, but first is much faster
> (by subjective estimate).
>
> Thank you,
>
> Ilya A. Kovalenko (mailto:shadow(at)oganer(dot)net)
>
>
> ---------------------------(end of broadcast)---------------------------
> TIP 4: Have you searched our list archives?
>
> http://archives.postgresql.org
>

In response to

Browse pgsql-sql by date

  From Date Subject
Next Message ceremona 2005-09-24 19:30:58 stored procs in postgresql
Previous Message Aldor 2005-09-24 11:19:48 Re: VACUUM FULL vs dump & restore