greenplum下schema的使用

Posted zsfishman

tags:

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

新建角色python:可以登陆,继承权限
CREATE role python WITH LOGIN ENCRYPTED PASSWORD ‘111111‘;
新建模式temp,给python用户存放临时表
CREATE SCHEMA temp;
grant all on schema temp to python;
grant create on schema temp to python;
grant usage on schema temp to python;
将gpadmin创建的表,授权给python
grant select on glfmwdkz to python;

python用户登陆后使用表(public模式下只读,temp可以读写):
create table temp.g1(like glfmwdkz);
insert into temp.g1 select * from glfmwdkz;

以上是关于greenplum下schema的使用的主要内容,如果未能解决你的问题,请参考以下文章

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

GreenPlum - Schema 如何连接?

查看Greenplum集群中的创建的类型

查看Greenplum集群中的创建的类型

如何检查哪个角色对greenplum中的表具有特权

Greenplum中角色权限及客户端认证管理