加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

如何将PostgreSQL“全部放在所有表格上”应用于新表?

发布时间:2020-12-13 16:24:23 所属栏目:百科 来源:网络整理
导读:正如在 GRANT SELECT to all tables in postgresql的问题中所讨论的那样,从PG 9.0开始,您可以使用如下命令将所有现有表的权限批量授予用户u: GRANT ALL ON ALL TABLES IN SCHEMA public TO u; 以u身份登录,您现在可以对预先存在的表a执行此操作: SELECT *
正如在 GRANT SELECT to all tables in postgresql的问题中所讨论的那样,从PG 9.0开始,您可以使用如下命令将所有现有表的权限批量授予用户u:
GRANT ALL ON ALL TABLES IN SCHEMA public TO u;

以u身份登录,您现在可以对预先存在的表a执行此操作:

SELECT * FROM a;

但是如果你现在创建表b并执行:

SELECT * FROM b;

你得到:

ERROR: permission denied for relation b
SQL state: 42501

这可以通过重新执行来解决

GRANT ALL ON ALL TABLES IN SCHEMA public TO u;

但是每次创建表格之后必须记住这样做是个问题.

有没有办法让PostgreSQL自动将这些全局授权应用于新创建的表?

?提前谢谢
?肯

一个可行的解决方案是改变u用户的默认权限:

例如:

alter default privileges in schema public grant all on tables to u;
alter default privileges in schema public grant all on sequences to u;

Description

ALTER DEFAULT PRIVILEGES allows you to set the privileges that will
be applied to objects created in the future. (It does not affect
privileges assigned to already-existing objects.) Currently,only the
privileges for tables (including views),sequences,and functions can
be altered.

You can change default privileges only for objects that will be
created by yourself or by roles that you are a member of. The
privileges can be set globally (i.e.,for all objects created in the
current database),or just for objects created in specified schemas.
Default privileges that are specified per-schema are added to whatever
the global default privileges are for the particular object type.

As explained under GRANT,the default privileges for any object type
normally grant all grantable permissions to the object owner,and may
grant some privileges to PUBLIC as well. However,this behavior can
be changed by altering the global default privileges with ALTER DEFAULT PRIVILEGES.

见:ALTER DEFAULT PRIVILEGES

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读