Document that pg_dump -d/-D prevents invalid data from canceling the
authorBruce Momjian
Sat, 15 Apr 2006 18:11:16 +0000 (18:11 +0000)
committerBruce Momjian
Sat, 15 Apr 2006 18:11:16 +0000 (18:11 +0000)
entire table load.

doc/src/sgml/ref/pg_dump.sgml

index 986a0d21afb8940726cab4b8ebfa4664f81e2a10..b29fe248dcf4e1b6854aaa263a5ccf7cb4ff2c87 100644 (file)
@@ -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.