バックアップ・リストアバックアップカスタムアーカイブ形式pg_dump -Fc foo_db > foo_db.dump カスタムアーカイブ形式でテーブルを指定pg_dump -Fc -t bar_table foo_db > foo_db.dump
pg_dumpコマンドhttp://www.postgresql.jp/document/9.3/html/app-pgdump.html リストアカスタムアーカイブ形式pg_restore -d foo_db < foo_db.dump プレーンテキスト形式psql -f foo_db.txt foo_db エンコーディングを指定PGCLIENTENCODING=EUC_JP psql -f foo_db.txt foo_db pg_restoreコマンドhttp://www.postgresql.jp/document/9.3/html/app-pgrestore.html 参考
|
|