greenplum给某个用户赋予整个schema下所有表的权限

Posted 哟、写bug呢!

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了greenplum给某个用户赋予整个schema下所有表的权限相关的知识,希望对你有一定的参考价值。

greenplum 虽然是postgresql的衍生产品

 

但是语法上略有不同

类似    grant all on all tables in schema schemaname to someone 就不行

报错提示  ERROR: syntax error at or near "all"

 

所以使用了笨办法

先生成语句

select grant all on table  || schemaname || . || tablename ||  to usertest; from pg_tables
where schemaname = panasonic_compass

得到

"grant all on table panasonic_compass.segment_dim to usertest;"
"grant all on table panasonic_compass.wm_offline_product_weekly_fct to usertest;"
"grant all on table panasonic_compass.customer_channel_dim to usertest;"
"grant all on table panasonic_compass.wm_offline_product_daily_fct to usertest;"

把两边的双引号替换掉然后统一执行就可以了。

 

同理赋予视图权限

select grant all on  || schemaname || . || viewname ||  to usertest; from pg_views
where schemaname = panasonic_compass

换主人

select alter table  || schemaname || . || tablename ||  owner to usertest; from pg_tables
where schemaname = panasonic_compass

 

以上是关于greenplum给某个用户赋予整个schema下所有表的权限的主要内容,如果未能解决你的问题,请参考以下文章

学习Greenplum的资源授权

Case: 一个read-only 角色对某个schema下的新建的表,无需单独授权,直接拥有只读权

pgsql 把某个表赋权限给用户

oracle 用户查询系统视图需要给啥权限

Linux 给用户赋予操作权限

Oracle用户a创建视图,需要给b用户赋予啥权限查看视图?