Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> 10gR2, problem about Resource role
hi guys, i am confused by "Resource" role, follow my operations
SQL> select * from v$version ;
BANNER
SQL> create user test identified by test ;
User created.
SQL> grant connect to test ;
Grant succeeded.
SQL> select * from dba_role_privs where grantee='TEST' ;
GRANTEE GRANTED_ROLE ADM DEF
------------------------------ ------------------------------ --- ---
TEST CONNECT NO YES
SQL> select * from dba_sys_privs where grantee='TEST';
no rows selected
SQL> grant resource to test ;
Grant succeeded.
SQL> select * from dba_role_privs where grantee='TEST' ;
GRANTEE GRANTED_ROLE ADM DEF
------------------------------ ------------------------------ --- ---
TEST RESOURCE NO YES TEST CONNECT NO YES
SQL> select * from dba_sys_privs where grantee='TEST';
GRANTEE PRIVILEGE ADM
------------------------------ ---------------------------------------- ---
TEST UNLIMITED TABLESPACE NO
problem comes out, why and when the "UNLIMITED TABLESPACE" privilege was granted to user "TEST", i am sure that the "UNLIMITED TABLESPACE" here derive from "RESOURCE" role, anybody has any idea about this phenomena? is this a oracle bug ?
thanks in advance, and sorry for my poor english
--
http://www.freelists.org/webpage/oracle-l
Received on Tue Oct 31 2006 - 07:08:42 CST
![]() |
![]() |