使用 python 将压缩的 SQL 转储导入 Postgresql

发布于 2024-10-16 21:14:40 字数 194 浏览 1 评论 0原文

我必须将压缩的 sql 转储导入到 PostgreSQL 数据库中。 转储的创建方式是:

pg_dump -F c

所以我得到一个压缩文件,我不能只逐行解析该文件,然后使用 psycopg2 将其上传到我的数据库中。

我正在处理的压缩转储非常大(高达 10GB)。导入它们的有效方法是什么?

I have to import a compressed sql dump into a PostgreSQL database.
The dump gets created by:

pg_dump -F c

So I get a compressed file, which I can't just parse line by line and then use psycopg2 to upload it into my database.

The compressed dumps I'm dealing with are quite big (up to 10GB). What would be an efficient way to do import them?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

琉璃繁缕 2024-10-23 21:14:40

除非您在 Python 项目中重新实现 pg_restore ,否则您基本上无法做到这一点。考虑从 Python 程序中调用 pg_restore

You basically can't do that unless you reimplement pg_restore in your Python project. Consider instead calling pg_restore from your Python program.

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