pg_dumpとpg_restore
pg_dumpでdumpファイルを作る
code:sh
$ pg_dump -h <Server Hostname> -U <DB user name> -Fc -f <dump file path> <DB name>
pg_restgoreでdumpファイルからDBをリストア
code:sh
$ pg_restore -h <Server Hostname> -U <DB user name> -d <DB name> -c --if-exists -j <number of jobs> <dump file path>
今のところ、このオプションが安定している気がする。