Equivalent Privilege in oracle 9i and 10g (merged) [message #410891] |
Tue, 30 June 2009 23:39 |
saifurshaon
Messages: 29 Registered: December 2007 Location: Dhaka
|
Junior Member |
|
|
Dear All,
for accessing 10G DB from 9i OEM i got below error like this
SELECT ANY DICTIONARY privilege should be granted.
But in 10G there is no privilage named SELECT ANY DICTIONARY.
So can any one tell me what will be the exact privileges which can be given to a normal user so that he can access the 10g database using 9i OEM.
|
|
|
|
|
|
Re: Equivalent Privilege in oracle 9i and 10g (merged) [message #411281 is a reply to message #410891] |
Thu, 02 July 2009 23:24 |
animesh_nz19
Messages: 7 Registered: July 2009
|
Junior Member |
|
|
SELECT_CATALOG_ROLE is present in 10G also.
SQL> grant select_catalog_role to akm;
Grant succeeded.
SQL> select banner from v$version;
BANNER
----------------------------------------------------------------
Oracle Database 10g Enterprise Edition Release 10.2.0.3.0 - Prod
PL/SQL Release 10.2.0.3.0 - Production
CORE 10.2.0.3.0 Production
TNS for 32-bit Windows: Version 10.2.0.3.0 - Production
NLSRTL Version 10.2.0.3.0 - Production
SQL> conn akm/akm
Connected.
SQL> select * from session_roles;
ROLE
------------------------------
CONNECT
RESOURCE
SELECT_CATALOG_ROLE
Regards,
Animesh
|
|
|
|