恢复 Postgresql 数据库

发布于 2024-07-15 06:59:54 字数 101 浏览 7 评论 0原文

我是否总是必须删除然后创建数据库才能从 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

一刻暧昧 2024-07-22 06:59:55

您可以在运行 pg_dump 时使用 -c (--clean) 选项,因此转储将包含正确的 DROP ... 命令。

但一般来说,我建议走“艰难的道路”:

dropdb ...
createdb ...
psql -d ... -f dump.file

通过这种方式,您可以确保数据库中以前的任何内容都没有“遗留”。

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":

dropdb ...
createdb ...
psql -d ... -f dump.file

In this way you are sure that there are no "left overs" from whatever was previously in the database.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文