Re: Database maintenance help

Поиск
Список
Период
Сортировка
От Jesus Sandoval
Тема Re: Database maintenance help
Дата
Msg-id 3DFBD77F.43CA3333@mzt.megared.net.mx
обсуждение исходный текст
Ответ на pg_dumpall doesn't work  (Justin Georgeson <jgeorgeson@unboundtech.com>)
Список pgsql-admin
"David F. Skoll" escribió:

> On Sat, 14 Dec 2002, Jesus Sandoval wrote:
>
> > following:
> > 1) Backup the database data, pg_dump is of no use because if the table design
> > changed then the COPY table FROM stdin produced by pg_dump needs to be
> > modified to accomodate the space for the new columns.
>
> Actually, you can use pg_dump with some special options.  I handle schema
> changes like this:
>
> 1) Back up the database with a normal pg_dump, just in case.
> 2) Back it up again with pg_dump "-a -D"  -- This produces a bunch of
>    INSERT INTO... statements
> 3) Drop the database
> 4) Recreate the database with the new schema
> 5) Restore from the dump in step (2).  As long as all columns in the old
>    schema are still present in the new schema, it works.  If you need to
>    get rid of a column, then in step (4), create a database with the unneeded
>    column, and then do a step (6) whereby you drop unneeded columns.
>
> The only problem is that restoring from (2) is slow; so I use a script to
> add a "BEGIN...COMMIT" wrapper around the dump to speed it up.
>
> --
> David.
>
> ---------------------------(end of broadcast)---------------------------
> TIP 2: you can get off all lists at once with the unregister command
>     (send "unregister YourEmailAddressHere" to majordomo@postgresql.org)

Ok, thanks

I had no clue about where to begin with this. I'll try it.

btw, thanks for your contributions to the open source comunity, I'm actually using
the ppp with my ADSL Modem, and found your ssh presentation very interesting, I'm
using it to reach an internal net from a ISP provider (practical magic with ssh).

Jesus Sandoval


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

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: Fixing stale locks
Следующее
От: HT Levine
Дата:
Сообщение: Followup Question about Vacuum from newsgroup