码迷,mamicode.com
首页 > 其他好文 > 详细

greenplum下schema的使用

时间:2019-12-29 16:46:35      阅读:471      评论:0      收藏:0      [点我收藏+]

标签:新建   用户登陆   grant   sele   temp   table   int   min   模式   

新建角色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的使用

标签:新建   用户登陆   grant   sele   temp   table   int   min   模式   

原文地址:https://www.cnblogs.com/zsfishman/p/12115174.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!