0
点赞
收藏
分享

微信扫一扫

hive创建管理员角色和授权

young_d807 2022-10-30 阅读 85

create role admin;
grant ALL on server server1 to role admin;
grant role admin to group admin;
grant ALL on database default to role admin;

create role hive;
grant ALL on server server1 to role hive;
grant role admin to group hive;
grant ALL on default to role hive;


举报

相关推荐

0 条评论