(轉)PostgreSQL pg_dump&psql 數據的備份與恢復

轉自:https://www.cnblogs.com/chjbbs/p/6480687.htmlhtml

 

Usage:
  pg_dump [OPTION]... [DBNAME] 數據庫名放最後,不指定默認是系統變量PGDATABASE指定的數據庫。

General options:(通常選項)
  -f, --file=FILENAME          output file or directory name導出後保存的文件名
  -F, --format=c|d|t|p         output file format (custom, directory, tar,導出文件的格式
                               plain text (default))
  -j, --jobs=NUM               use this many parallel jobs to dump並行數
  -v, --verbose                verbose mode 詳細模式
  -V, --version                output version information, then exit輸出版本信息, 而後退出
  -Z, --compress=0-9           compression level for compressed formats被壓縮格式的壓縮級別
  --lock-wait-timeout=TIMEOUT  fail after waiting TIMEOUT for a table lock在等待表鎖超時後操做失敗
  -?, --help                   show this help, then exit顯示此幫助信息, 而後退出

Options controlling the output content:(控制輸出的選項)
  -a, --data-only              dump only the data, not the schema只導出數據,不包括模式
  -b, --blobs                  include large objects in dump在轉儲中包括大對象
  -c, --clean                  clean (drop) database objects before recreating在從新建立以前,先清除(刪除)數據庫對象
  -C, --create                 include commands to create database in dump在轉儲中包括命令,以便建立數據庫(包括建庫語句,無需在導入以前先建數據庫)
  -E, --encoding=ENCODING      dump the data in encoding ENCODING轉儲以ENCODING形式編碼的數據
  -n, --schema=SCHEMA          dump the named schema(s) only只轉儲指定名稱的模式
  -N, --exclude-schema=SCHEMA  do NOT dump the named schema(s)不轉儲已命名的模式
  -o, --oids                   include OIDs in dump在轉儲中包括 OID
  -O, --no-owner               skip restoration of object ownership in在明文格式中, 忽略恢復對象所屬者
                               plain-text format
  -s, --schema-only            dump only the schema, no data只轉儲模式, 不包括數據(不導出數據)
  -S, --superuser=NAME         superuser user name to use in plain-text format在轉儲中, 指定的超級用戶名
  -t, --table=TABLE            dump the named table(s) only只轉儲指定名稱的表
  -T, --exclude-table=TABLE    do NOT dump the named table(s)只轉儲指定名稱的表
  -x, --no-privileges          do not dump privileges (grant/revoke)不要轉儲權限 (grant/revoke)
  --binary-upgrade             for use by upgrade utilities only只能由升級工具使用
  --column-inserts             dump data as INSERT commands with column names以帶有列名的INSERT命令形式轉儲數據
  --disable-dollar-quoting     disable dollar quoting, use SQL standard quoting取消美圓 (符號) 引號, 使用 SQL 標準引號
  --disable-triggers           disable triggers during data-only restore在只恢復數據的過程當中禁用觸發器
  --exclude-table-data=TABLE   do NOT dump data for the named table(s)以INSERT命令,而不是COPY命令的形式轉儲數據
  --inserts                    dump data as INSERT commands, rather than COPY
  --no-security-labels         do not dump security label assignments
  --no-synchronized-snapshots  do not use synchronized snapshots in parallel jobs
  --no-tablespaces             do not dump tablespace assignments不轉儲表空間分配信息
  --no-unlogged-table-data     do not dump unlogged table data
  --quote-all-identifiers      quote all identifiers, even if not key words
  --section=SECTION            dump named section (pre-data, data, or post-data)
  --serializable-deferrable    wait until the dump can run without anomalies
  --use-set-session-authorization
                               use SET SESSION AUTHORIZATION commands instead of
                               ALTER OWNER commands to set ownership

Connection options:(控制鏈接的選項)
  -d, --dbname=DBNAME      database to dump 數據庫名
  -h, --host=HOSTNAME      database server host or socket directory數據庫服務器的主機名或套接字目錄
  -p, --port=PORT          database server port number數據庫服務器的端口號
  -U, --username=NAME      connect as specified database user以指定的數據庫用戶聯接
  -w, --no-password        never prompt for password永遠不提示輸入口令
  -W, --password           force password prompt (should happen automatically)強制口令提示 (自動)
  --role=ROLENAME          do SET ROLE before dump

If no database name is supplied, then the PGDATABASE environment若是沒有提供數據庫名字, 那麼使用 PGDATABASE 環境變量的數值. 
variable value is used.

Report bugs to <pgsql-bugs@postgresql.org>.

一: 純文件格式的腳本: 
示例:
1. 只導出postgres數據庫的數據,不包括模式 -s
   pg_dump -U postgres -f /postgres.sql -s postgres(數據庫名)
2. 導出postgres數據庫(包括數據)
   pg_dump -U postgres -f /postgres.sql  postgres(數據庫名)
3. 導出postgres數據庫中表test01的數據
   create database "test01" with owner="postgres" encoding='utf-8';(單引號,雙引號不能錯)
   pg_dump -U postgres -f /postgres.sql -t test01 postgres(數據庫名)
4. 導出postgres數據庫中表test01的數據,以insert語句的形式
   pg_dump -U postgres -f /postgres.sql -t test01 --column-inserts postgres(數據庫名)
5. 恢復數據到bk01數據庫
  psql -U postgres -f /postgres.sql bk01

2、 使用歸檔文件格式:
pg_restore
使用pg_restore純文本恢復純文本格式的腳本,沒法恢復
[root@localhost postgres-9.3.5]# pg_restore -U postgres -d bk01  /mnt/hgfs/window\&ubuntu\ shared\ folder/vendemo.sql 
pg_restore: [archiver] input file appears to be a text format dump. Please use psql.

pg_restore和歸檔文件格式一塊兒使用重建數據庫。

1. 先備份: 
   pg_dump -U postgres -F t -f /vendemo.tar vendemo  備份下來有800多k
 . 恢復:
   pg_restore -U postgres -d bk01 /vendemo.tar 
2. 先備份: 
   pg_dump -U postgres -F c -f /vendemo.tar vendemo  備份下來有300多k
 . 恢復:
   pg_restore -U postgres -d bk01 /vendemo.tar 

3、 壓縮備份與恢復:
處理大數據庫:
1. 使用壓縮的轉儲. 使用你熟悉的壓縮程序,好比說 gzip。
 . 先備份:
   pg_dump -U postgres vendemo | gzip > /vendemo.gz 備份下來只有30多k
 . 恢復:
   gunzip -c /vendemo.gz | psql -U postgres bk02
 或者
   cat /vendemo.gz | gunzip | psql -U postgres bk02
2. 使用 split。. split 命令容許你 你用下面的方法把輸出分解成操做系統能夠接受的大小。 好比,讓每一個塊大小爲 1 兆字節: 
 . 先備份:
   pg_dump -U postgres -d vendemo | split -b 100k - /vend/vend
   導出來的樣子是   vendaa 100k
   vendab 100k
   vendac 100k
   vendad 16k
 . 恢復:
  cat /vend/vend* | psql -U postgres bk02
sql

相關文章
相關標籤/搜索