summaryrefslogtreecommitdiff
path: root/src/man
diff options
context:
space:
mode:
authorBruce Momjian1997-12-01 21:01:24 +0000
committerBruce Momjian1997-12-01 21:01:24 +0000
commitdfc1a6a848d65f64e76a4bfce66269bdc33a6227 (patch)
treeaed88be9d625c39ce2c02d43de315e6d8860b07c /src/man
parentdf823bc42d41fb42ace96352a98246c663b45bce (diff)
Document pg_dump -z, clean up option list. Fix problem with libpq handling of field names uppercase code.
Diffstat (limited to 'src/man')
-rw-r--r--src/man/pg_dump.158
1 files changed, 29 insertions, 29 deletions
diff --git a/src/man/pg_dump.1 b/src/man/pg_dump.1
index a03a91d85a..f2fd835b63 100644
--- a/src/man/pg_dump.1
+++ b/src/man/pg_dump.1
@@ -1,42 +1,42 @@
.\" This is -*-nroff-*-
.\" XXX standard disclaimer belongs here....
-.\" $Header: /cvsroot/pgsql/src/man/Attic/pg_dump.1,v 1.7 1997/10/30 03:59:59 momjian Exp $
+.\" $Header: /cvsroot/pgsql/src/man/Attic/pg_dump.1,v 1.8 1997/12/01 21:01:24 momjian Exp $
.TH PG_DUMP UNIX 1/20/96 PostgreSQL PostgreSQL
.SH NAME
pg_dump \(em dumps out a Postgres database into a script file
.SH SYNOPSIS
.BR pg_dump
[\c
-.BR "-f"
-filename
+.BR "-a"
]
[\c
-.BR "-h"
-hostname
+.BR "-d"
]
[\c
-.BR "-p"
-port]
+.BR "-D"
+]
[\c
-.BR "-v"
+.BR "-f"
+filename
]
[\c
-.BR "-d"
+.BR "-h"
+hostname
]
[\c
-.BR "-D"
+.BR "-o"
]
[\c
-.BR "-S"
-help]
+.BR "-p"
+port]
[\c
-.BR "-a"
+.BR "-s"
]
[\c
.BR "-t"
table]
[\c
-.BR "-o"
+.BR "-v"
]
dbname
.in -5n
@@ -62,35 +62,35 @@ in light of the limitations listed below.
.PP
pg_dump understands the following options:
.TP
+.BR "-a" ""
+Dump out only the data, no schema
+.TP
+.BR "-d" ""
+Dump data as proper insert strings
+.TP
+.BR "-D" ""
+Dump data as inserts with attribute names
+.TP
.BR "-f" " filename"
Specifies the output file
.TP
.BR "-h" " hostname"
Specifies the server host name
.TP
+.BR "-o" ""
+Dump object id's (oids)
+.TP
.BR "-p" " port"
Specifies the server port number
.TP
-.BR "-v" ""
-Specifies verbose mode
-.TP
-.BR "-d" ""
-Dump data as proper insert strings
-.TP
-.BR "-D" ""
-Dump data as inserts with attribute names
-.TP
-.BR "-S" ""
+.BR "-s" ""
Dump out only the schema, no data
.TP
-.BR "-a" ""
-Dump out only the data, no schema
-.TP
.BR "-t" " table"
Dump for this table only
.TP
-.BR "-o" ""
-Dump object id's (oids)
+.BR "-v" ""
+Specifies verbose mode
.PP
If dbname is not supplied, then the DATABASE environment variable value is used.
.SH "CAVEATS AND LIMITATIONS"