欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

postgres导入备份出现'无效的命令\N'

程序员文章站 2024-03-21 11:57:34
...

在使用pg_dump对数据库进行备份的时候,到出成默认的格式,导致插入数据时,提示无效的命令\N

解决方法:使用custom格式导出,然后用pg_restore导入。

导出

pg_dump -F custom -U username -d dbname -h host -p port -f filepath

导入

pg_restore -d dbname -U username -h host -p port --jobs=4 --verbose filepath
相关标签: postgres