Clarify schema meanings in pg_dump manual page by referring to object
authorBruce Momjian
Sat, 10 Jul 2004 15:51:28 +0000 (15:51 +0000)
committerBruce Momjian
Sat, 10 Jul 2004 15:51:28 +0000 (15:51 +0000)
definitions more frequently.

doc/src/sgml/ref/pg_dump.sgml

index 12c703b79bceab4af26981cf7e1faa7a55e8305a..b3dd617136b4353f748ec69331e0c71bbecc138a 100644 (file)
@@ -1,5 +1,5 @@
 
 
@@ -112,7 +112,7 @@ PostgreSQL documentation
       
       
        
-   Dump only the data, not the schema (data definitions).
+   Dump only the data, not the object definitions (schema)
        
 
        
@@ -233,7 +233,7 @@ PostgreSQL documentation
           
          Output a tar archive suitable for input into 
          pg_restore. Using this archive format 
-         allows reordering and/or exclusion of schema elements 
+         allows reordering and/or exclusion of database objects
          at the time the database is restored. It is also possible to limit 
          which data is reloaded at restore time.
           
@@ -246,8 +246,8 @@ PostgreSQL documentation
           
          Output a custom archive suitable for input into 
          pg_restore. This is the most flexible 
-         format in that it allows reordering of data load as well 
-         as schema elements. This format is also compressed by default.
+         format in that it allows reordering of loading data as well 
+         as object definitions. This format is also compressed by default.
           
          
         
@@ -322,7 +322,7 @@ PostgreSQL documentation
    ownership of objects to match the original database.
    By default, pg_dump issues
    SET SESSION AUTHORIZATION
-   statements to set ownership of created schema elements.
+   statements to set ownership of created database objects.
    These statements
    will fail when the script is run unless it is started by a superuser
    (or the same user that owns all of the objects in the script).
@@ -354,7 +354,7 @@ PostgreSQL documentation
       
       
        
-   Dump only the schema (data definitions), no data.
+   Dump only the object definitions (schema), not data.