在执行我应该使用的pg_dump时,为什么?
pg_dump -U< user> <数据库> | gzip -c> backup.gz
要么
pg_dump -F c -f backup.tar.gz -U< user> <数据库>
根据
原文链接:https://www.f2er.com/postgresql/192525.htmlpg_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.