恢复 Postgresql 数据库
我是否总是必须删除然后创建数据库才能从 pg_dump 文件恢复它? 如果我不删除数据库,即使某些寄存器已经在数据库中,正在恢复的数据也会添加到数据库中的当前数据中(因此数据是重复的)。
Do I always have to delete and then create a database to restore it from a pg_dump file? If I don't delete the database, the data being restore is added to the current data in the DB even if some register already are in the database (so the data is duplicated).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在运行 pg_dump 时使用 -c (--clean) 选项,因此转储将包含正确的 DROP ... 命令。
但一般来说,我建议走“艰难的道路”:
通过这种方式,您可以确保数据库中以前的任何内容都没有“遗留”。
You can use -c (--clean) option while running pg_dump, so the dump will contain proper DROP ... commands.
But generally, I would suggest to go the "hard way":
In this way you are sure that there are no "left overs" from whatever was previously in the database.