postgreSQL备份

本人是个新手,现在用pg_dump给数据库test备份,指令为:
pg_dump -d test
恢复指令为:
dropdb  test
pg_restore -C -d test db.dump
然后出现错误:
[Archiver]input file does not a vaild file of archive.
请教这是为什么啊?谢谢!

trainee
pg_dump有2种格式
1、文本格式(默认格式),用psql恢复
2、archive格式, 用pg_restore恢复

 

你可能感兴趣的:(PostgreSQL)