Re: Export

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: Export
Дата
Msg-id 5130.1238977028@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Export  ("Jana Vasseru" <jana.vasseru@gmail.com>)
Список pgsql-novice
"Jana Vasseru" <jana.vasseru@gmail.com> writes:
> a) how can i export database schema structure and data so that they can be
> imported to another server - into different
> database, different tablespace and with a different owner ?

pg_dump's --no-owner switch might help for the last.  If you want to
change tablespace names you'll probably have to edit the dump script
manually.  It might be easier to use ALTER TABLESPACE RENAME to
temporarily make the destination's tablespace configuration match
by name before you load the dump.

> b) how can i export structure of database so that SERIAL columns remain
> SERIAL?

pg_dump does not bother with the SERIAL shorthand.  It's only shorthand,
there is no functional difference.

            regards, tom lane

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

Предыдущее
От: "Jana Vasseru"
Дата:
Сообщение: Export
Следующее
От: P Kapat
Дата:
Сообщение: drop a table from non-public schema