|
A common role-role
All users with this role have specific permissions that the role has
such as:
create role r_acter_user;
grant create session to r_acter_user;
grant select on dba_users to r_acter_user;
grant create trigger to r_acter_user;
Grant this role to the user myuser; then: myuser has all the permissions that the role above has:
grant r_acter_user to myuser; |
|