pg_dumpall.1
上传用户:blenddy
上传日期:2007-01-07
资源大小:6495k
文件大小:1k
源码类别:

数据库系统

开发平台:

Unix_Linux

  1. ." This is -*-nroff-*-
  2. ." XXX standard disclaimer belongs here....
  3. ." $Header: /usr/local/cvsroot/pgsql/src/man/Attic/pg_dumpall.1,v 1.5 1998/06/24 13:21:28 momjian Exp $
  4. .TH pg_dumpall UNIX 1/20/96 PostgreSQL PostgreSQL
  5. .SH NAME
  6. pg_dumpall - dumps out all Postgres databases into a script file
  7. .SH SYNOPSIS
  8. .BR pg_dumpall 
  9. [pg_dump options]
  10. .SH DESCRIPTION
  11. .IR "pg_dumpall"
  12. is a utility for dumping out all Postgres databases into one file.
  13. It also dumps the pg_shadow table, which is global to all databases.
  14. pg_dumpall creates each dumped database before loading.
  15. pg_dumpall takes all pg_dump options, but fB-ffR and fBdbnamefR
  16. should not be used.
  17. .SH EXAMPLES
  18. .nf
  19. To dump all databases (you can use pg_dump options):
  20. pg_dumpall -o >db.out
  21. To reload into a fresh installation (you can use psql options):
  22. psql -e template1 <db.out
  23. .fi
  24. .SH "SEE ALSO"
  25. pg_dump(1).