pg_dumpall.1
上传用户:blenddy
上传日期:2007-01-07
资源大小:6495k
文件大小:1k
- ." This is -*-nroff-*-
- ." XXX standard disclaimer belongs here....
- ." $Header: /usr/local/cvsroot/pgsql/src/man/Attic/pg_dumpall.1,v 1.5 1998/06/24 13:21:28 momjian Exp $
- .TH pg_dumpall UNIX 1/20/96 PostgreSQL PostgreSQL
- .SH NAME
- pg_dumpall - dumps out all Postgres databases into a script file
- .SH SYNOPSIS
- .BR pg_dumpall
- [pg_dump options]
- .SH DESCRIPTION
- .IR "pg_dumpall"
- is a utility for dumping out all Postgres databases into one file.
- It also dumps the pg_shadow table, which is global to all databases.
- pg_dumpall creates each dumped database before loading.
- pg_dumpall takes all pg_dump options, but fB-ffR and fBdbnamefR
- should not be used.
- .SH EXAMPLES
- .nf
- To dump all databases (you can use pg_dump options):
- pg_dumpall -o >db.out
- To reload into a fresh installation (you can use psql options):
- psql -e template1 <db.out
- .fi
- .SH "SEE ALSO"
- pg_dump(1).