Re: Moving a database

Поиск
Список
Период
Сортировка
От Jeff Frost
Тема Re: Moving a database
Дата
Msg-id Pine.LNX.4.64.0512161936380.28807@discord.dyndns.org
обсуждение исходный текст
Ответ на Moving a database  (Richard Bortolucci <richardbortolucci@gmail.com>)
Список pgsql-admin
If they are both up and running and reachable, then you likely just want to do
something as simple as:

pg_dumpall -h <old host> | psql -h <new host> template1

That's assuming you want to move all the DBs on the first server to the
second.

NOTE: pg_dumpall cannot dump large objects.  If you have these, you'll have to
use another method of migration.

Another good method if you want to limit downtime and have primary keys on
all your tables is to setup slony on both nodes, let the subscription get up
to date and then change roles and bring down the old server.

On Wed, 14 Dec 2005, Richard Bortolucci wrote:

> Hi,
>
> What are the correct steps to move an database and from an server running
> postgreslq 7.4.2 to another running 8.0.3?
>
> --
> Richard Bortolucci
>

--
Jeff Frost, Owner     <jeff@frostconsultingllc.com>
Frost Consulting, LLC     http://www.frostconsultingllc.com/
Phone: 650-780-7908    FAX: 650-649-1954

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

Предыдущее
От: Jeff Frost
Дата:
Сообщение: Re: How to find data directory
Следующее
От: Christopher Browne
Дата:
Сообщение: Re: Moving a database