向数据库中的所有对象授予权限 - Postgres

发布于 2024-09-26 01:29:20 字数 250 浏览 6 评论 0原文

我正在尝试备份我的数据库:

pg_dump my_database > backup.sql

不幸的是,数据库中的许多对象没有设置权限,

因此该命令不起作用!


此外,这不会按预期授予特权:

GRANT ALL ON DATABASE my_database TO root

有什么想法吗?

I'm trying to backup my database with:

pg_dump my_database > backup.sql

unfortunately there are no privileges set for many objects in the database,

therefore the command does not work!


Furthermore this does not grant privileges as expected:

GRANT ALL ON DATABASE my_database TO root

Any ideas?

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

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

发布评论

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

评论(1

暮年慕年 2024-10-03 01:29:20

如果您需要转储整个数据库,更简单的解决方案是以超级用户身份工作(默认为 postres)。难道不是一个选择吗?

pg_dump -U postgres my_database >备份.sql

If you need to dump entire database much simpler solution is working as a superuser (postres by default). Isn't it an option?

pg_dump -U postgres my_database > backup.sql

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