向数据库中的所有对象授予权限 - Postgres
我正在尝试备份我的数据库:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您需要转储整个数据库,更简单的解决方案是以超级用户身份工作(默认为 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