oracle 中如何创建一个角色并把角色赋予指定账户

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了oracle 中如何创建一个角色并把角色赋予指定账户相关的知识,希望对你有一定的参考价值。

1.创建角色
create role hello;
2.给角色分配权限
grant create table to hello;
grant select on xxx to hello;
3.把角色赋予指定账户
grant hello to user;
4.删除角色
drop role hello;
参考技术A 1.创建角色
create role role_name;
2.把角色赋予指定账户
grant hello to user_name;
参考技术B create role role111;
grant role111 to 用户;

oracle中如何建用户并给用户不同的角色

建用户:
create user [username] identified by [password];
然后赋予角色:
grant [rolename list] to [username];
比如:
create user test identified by test;
grant connect,resource,dba to test;
参考技术A create user YYY identified by pwd
grant XXX to YYY;

以上是关于oracle 中如何创建一个角色并把角色赋予指定账户的主要内容,如果未能解决你的问题,请参考以下文章

如何在oracle客户端创建表空间(具体配置)

oracle 10g中权限分配问题 对于角色CONNECT,RESOURCE的权限我查看了, 我赋予一个用户这两个角色。

oracle中如何建用户并给用户不同的角色

oracle创建,查看用户和角色,用户角色赋权

Oracle用户授权角色管理

oracle 中如何进行角色管理