一、角色的创建
create role role_01;
二、角色的授权
grant create table,create user,unlimited tablesapce,create session to role_01;
三、可以通过角色给用户授权
grant role_01 to sys01;
注意:角色的权限的不能回收的。
一、角色的创建
create role role_01;
二、角色的授权
grant create table,create user,unlimited tablesapce,create session to role_01;
三、可以通过角色给用户授权
grant role_01 to sys01;
注意:角色的权限的不能回收的。