"database.sql 是 PostgreSQL 数据库的转储。它需要恢复。”

发布于 2024-10-07 21:45:13 字数 98 浏览 1 评论 0 原文

我有一个使用 PSQL 运行的 Django 站点,但是当我的朋友将该站点返还给我时,他说:“database.sql 是数据库的转储。它需要恢复。”

这意味着什么?

I have a Django site running with PSQL but when my friend gave the site back to me he said: "database.sql is a dump of the database. It needs to be restored."

What does this mean?

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

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

发布评论

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

评论(1

兲鉂ぱ嘚淚 2024-10-14 21:45:13

这意味着database.sql拥有您网站数据的数据库存储信息。您可以通过以下方式在 postgresql 数据库中恢复它:

psql dbname < infile

http:// /www.postgresql.org/docs/current/interactive/backup.html#BACKUP-DUMP-RESTORE

It means that database.sql has the database storage information of your sites data. You may restore it in your postgresql database by:

psql dbname < infile

http://www.postgresql.org/docs/current/interactive/backup.html#BACKUP-DUMP-RESTORE

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