summaryrefslogtreecommitdiff
path: root/doc/src
diff options
context:
space:
mode:
authorTom Lane2003-05-30 23:55:10 +0000
committerTom Lane2003-05-30 23:55:10 +0000
commit9e1e72b6980643246cad00559ea455cb52eb3472 (patch)
treee180f35ca55d13228c5feaf2820c3d9b584d1438 /doc/src
parentdf1df6bb90e0dcdea47b45f8292e8fe95843c8de (diff)
Cause pg_dumpall to support the -a, -s, -x options of pg_dump.
Diffstat (limited to 'doc/src')
-rw-r--r--doc/src/sgml/ref/pg_dumpall.sgml40
1 files changed, 36 insertions, 4 deletions
diff --git a/doc/src/sgml/ref/pg_dumpall.sgml b/doc/src/sgml/ref/pg_dumpall.sgml
index f33c81dd870..500336e9196 100644
--- a/doc/src/sgml/ref/pg_dumpall.sgml
+++ b/doc/src/sgml/ref/pg_dumpall.sgml
@@ -1,5 +1,5 @@
<!--
-$Header: /cvsroot/pgsql/doc/src/sgml/ref/pg_dumpall.sgml,v 1.38 2003/03/24 14:32:51 petere Exp $
+$Header: /cvsroot/pgsql/doc/src/sgml/ref/pg_dumpall.sgml,v 1.39 2003/05/30 23:55:10 tgl Exp $
PostgreSQL documentation
-->
@@ -35,8 +35,8 @@ PostgreSQL documentation
<application>pg_dumpall</application> also dumps global objects
that are common to all databases.
(<application>pg_dump</application> does not save these objects.)
- This currently includes the information about database users and
- groups.
+ This currently includes information about database users and
+ groups, and access permissions that apply to databases as a whole.
</para>
<para>
@@ -75,10 +75,21 @@ PostgreSQL documentation
<title>Options</title>
<para>
- The following command-line options are used to control the output format.
+ The following command-line options are used to control the content and
+ format of the output.
<variablelist>
<varlistentry>
+ <term><option>-a</></term>
+ <term><option>--data-only</></term>
+ <listitem>
+ <para>
+ Dump only the data, not the schema (data definitions).
+ </para>
+ </listitem>
+ </varlistentry>
+
+ <varlistentry>
<term><option>-c</option></term>
<term><option>--clean</option></term>
<listitem>
@@ -162,6 +173,16 @@ PostgreSQL documentation
</varlistentry>
<varlistentry>
+ <term><option>-s</option></term>
+ <term><option>--schema-only</option></term>
+ <listitem>
+ <para>
+ Dump only the schema (data definitions), no data.
+ </para>
+ </listitem>
+ </varlistentry>
+
+ <varlistentry>
<term><option>-v</></term>
<term><option>--verbose</></term>
<listitem>
@@ -172,6 +193,17 @@ PostgreSQL documentation
</para>
</listitem>
</varlistentry>
+
+ <varlistentry>
+ <term><option>-x</></term>
+ <term><option>--no-privileges</></term>
+ <term><option>--no-acl</></term>
+ <listitem>
+ <para>
+ Prevent dumping of access privileges (grant/revoke commands).
+ </para>
+ </listitem>
+ </varlistentry>
</variablelist>
</para>