From: Bruce Momjian Date: Sat, 15 Apr 2006 18:11:48 +0000 (+0000) Subject: Document that pg_dump -d/-D prevents invalid data from canceling the X-Git-Url: http://git.postgresql.org/gitweb/static/gitweb.js?a=commitdiff_plain;h=09045e50627e6d2d5eeabf6b0bc44d428f300ac5;p=users%2Fbernd%2Fpostgres.git Document that pg_dump -d/-D prevents invalid data from canceling the entire table load. --- diff --git a/doc/src/sgml/ref/pg_dump.sgml b/doc/src/sgml/ref/pg_dump.sgml index b2c6f6b301..99afb5cc4c 100644 --- a/doc/src/sgml/ref/pg_dump.sgml +++ b/doc/src/sgml/ref/pg_dump.sgml @@ -173,6 +173,9 @@ PostgreSQL documentation non-PostgreSQL databases. Note that the restore may fail altogether if you have rearranged column order. The option is safer, though even slower. + Also, while this option generates errors for invalid data, + it allows other INSERTs to continue loading + data into the table. @@ -190,6 +193,9 @@ PostgreSQL documentation ...). This will make restoration very slow; it is mainly useful for making dumps that can be loaded into non-PostgreSQL databases. + Also, while this option generates errors for invalid data, + it allows other INSERTs to continue loading + data into the table.