From 598dfee5526a6d70f870d9096cf4cfa82fc75446 Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Sat, 15 Apr 2006 18:11:16 +0000 Subject: [PATCH] Document that pg_dump -d/-D prevents invalid data from canceling the entire table load. --- doc/src/sgml/ref/pg_dump.sgml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/doc/src/sgml/ref/pg_dump.sgml b/doc/src/sgml/ref/pg_dump.sgml index 986a0d21af..b29fe248dc 100644 --- a/doc/src/sgml/ref/pg_dump.sgml +++ b/doc/src/sgml/ref/pg_dump.sgml @@ -1,5 +1,5 @@ @@ -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.