why do i get ORA-01952: system privileges not granted to 'ROJIB' ?
create role :
SQL> create role security;
Role created.
and then create grant for role 'security' :
SQL> grant create table,create view to security;
Grant succeeded.
grant for user :
SQL> grant security to rojib;
Grant succeeded.
after in revoke, i get the error :
SQL> revoke create table from rojib;
revoke create table from rojib
*
ERROR at line 1:
ORA-01952: system privileges not granted to 'ROJIB'