帮助文档
pg_dump --help
pg_restore --help
tar格式的dmp包的制作
备份
pg_dump -Ft -t 表 -U 用户 -d 库 -f 文件.pgdmp
恢复
pg_restore -U 用户 -d 库 -O --format=t 文件.pgdmp
pg_restore -U 用户 -d 库 -O -Ft 文件.pgdmp
自定义格式压缩dmp的制作
备份
pg_dump -Fc -Z 3 -t 表 -U 用户 -d 库 -f 文件.pgdmp
恢复
pg_restore -U 用户 -d 库 -O -Fc 文件.pgdmp
文档信息
- 本文作者:fei
- 本文链接:https://ayee1616166.github.io/2016/11/03/PostgreSQL%E4%B9%8Bpg_dump%E5%92%8Cpg_restore/
- 版权声明:自由转载-非商用-非衍生-保持署名(创意共享3.0许可证)