pg_dump备份压缩

前端之家收集整理的这篇文章主要介绍了pg_dump备份压缩前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在执行我应该使用的pg_dump时,为什么?

pg_dump -U< user> <数据库> | gzip -c> backup.gz

要么

pg_dump -F c -f backup.tar.gz -U< user> <数据库>

根据 pg_dump documentation,自定义格式为:

the most flexible output format in that it allows manual selection and
reordering of archived items during restore. This format is also
compressed by default

您还可以使用-Z选项选择压缩级别.

为简单起见,我肯定会选择pg_dump -F c而不是gzip.

原文链接:https://www.f2er.com/postgresql/192525.html

猜你在找的Postgre SQL相关文章