postgresql:pg_restore: [archiver] input file does not appear to be a valid archive

前端之家收集整理的这篇文章主要介绍了postgresql:pg_restore: [archiver] input file does not appear to be a valid archive前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

使用ps_restore恢复备份数据库出错:pg_restore: [archiver] input file does not appear to be a valid archive

使用
pg_dump -Fp -t mytable > mytable_back


g_dump -t mytable > mytable_back

备份出来的为脚本(纯文本)文件,不能直接使用pg_restore进行恢复

需要使用命令psql \i

user>psql -U username -d mydb
username=# \i mytable_back


pg_dump和pg_restore的时候使用 格式为 custom(-F c )或tar格式(-F t)即可进行恢复

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

猜你在找的Postgre SQL相关文章