Re: pg_dump/pg_restore schema and data separately and foreign key constraints - Mailing list pgsql-general

From Vasiliy Vasin
Subject Re: pg_dump/pg_restore schema and data separately and foreign key constraints
Date
Msg-id 9071242164110@webmail30.yandex.ru
Whole thread Raw
In response to Re: pg_dump/pg_restore schema and data separately and foreign key constraints  (Adrian Klaver <aklaver@comcast.net>)
Responses Re: pg_dump/pg_restore schema and data separately and foreign key constraints
List pgsql-general
In the end, decided to make easier: make a complete dump except tables that I don't want to backup, then just dump
schemaof these tables. So I have 2 files: schema+data for all except table1 and table2, schema only for table1 and
table2.
It's a strangely that pg_restore is still no option to check the constraints after you insert all data.
Something like http://www.postgresql.org/docs/8.3/static/sql-set-constraints.html

13.05.09, 01:17, "Adrian Klaver" <aklaver@comcast.net>:

> Sounds like an ordering problem, you are restoring the child table before the parent. Best bet is to dump the table
datato individual files and restore them in the proper order. 

pgsql-general by date:

Previous
From: Alan Hodgson
Date:
Subject: Re: pg_dump/pg_restore schema and data separately and foreign key constraints
Next
From: Dragan Zubac
Date:
Subject: Re: pg_dump/pg_restore schema and data separately and foreign key constraints