Re: pg_dump excluding tables content but not table schema

Поиск
Список
Период
Сортировка
От Ivan Sergio Borgonovo
Тема Re: pg_dump excluding tables content but not table schema
Дата
Msg-id 20091228212017.77065fe3@dawn.webthatworks.it
обсуждение исходный текст
Ответ на Re: pg_dump excluding tables content but not table schema  (Raymond O'Donnell <rod@iol.ie>)
Ответы Re: pg_dump excluding tables content but not table schema  (Raymond O'Donnell <rod@iol.ie>)
Re: pg_dump excluding tables content but not table schema  (Ivan Sergio Borgonovo <mail@webthatworks.it>)
Список pgsql-general
On Mon, 28 Dec 2009 19:39:36 +0000
Raymond O'Donnell <rod@iol.ie> wrote:

> On 28/12/2009 18:41, Ivan Sergio Borgonovo wrote:
>
> > I'd like to just dump the table schema without dumping the table
> > contend.

> pg_dump -s -t <table name> <db name>

My fault. I was not clear enough.
I'd like to make a "mostly" full backup, excluding from backup just
the data of some tables but backing up the schema of those tables.

mmm let me try if

pg_dump -Fc -Z9 -s -t *.cache* -d mydb > schema_only.bak
pg_dump -Fc -Z9 -T *.cache* -d mydb > nearly_full.bak

cat nearly_full.bak schema_only.bak | pg_restore -1 -d mydb

It seems it is working... I'll test if everything is there.

--
Ivan Sergio Borgonovo
http://www.webthatworks.it


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

Предыдущее
От: Greenhorn
Дата:
Сообщение: Re: cross-database time extract?
Следующее
От: Raymond O'Donnell
Дата:
Сообщение: Re: pg_dump excluding tables content but not table schema