Differences between version 4 and predecessor to the previous major change of pg_dumpall(1).
Other diffs: Previous Revision, Previous Author, or view the Annotated Edit History
Newer page: | version 4 | Last edited on Tuesday, June 4, 2002 12:22:41 am | by perry | Revert |
Older page: | version 3 | Last edited on Tuesday, June 4, 2002 12:22:41 am | by perry | Revert |
@@ -23,9 +23,9 @@
__pg_dumpall__ is a utility for writing out (``dumping'')
all PostgreSQL databases of a cluster into one script file.
The script file contains SQL commands that can be used as
input to psql(1) to restore the databases. It does
-this by calling __
pg_dump__
(1) for each database in a
+this by calling pg_dump(1) for each database in a
cluster. __pg_dumpall__ also dumps global objects that
are common to all databases. (__pg_dump__ does not save
these objects.) This currently includes the information
about database users and groups.
@@ -107,9 +107,9 @@
the server requires password authentication.
Any other command line parameters are passed to the
-underlying __
pg_dump__
(1) calls. This is useful to
+underlying pg_dump(1) calls. This is useful to
control some aspects of the output format, but some options
such as __-f__, __-t__, and ''dbname'' should be
avoided.
!!EXAMPLES
@@ -126,7 +126,7 @@
__(It is not important to which database you connect here since the script file created by __pg_dumpall__ will contain the appropriate commands to create and connect to the saved databases.)
!!SEE ALSO
-__
pg_dump__
(1), psql(1). Check there for details
+pg_dump(1), psql(1). Check there for details
on possible error conditions.
----