Hi All!
I'm going to migrate Oracle Waveset connector to OIM.
Our company needs to manage following user permissions with OIM Oracle:
1. Tablespace quota - define table space volume for Business role entitlements, like commands:
SELECT * FROM DBA_TS_QUOTAS where username = 'HR';
Alter user HR quota 100M on USERS;
2. noCascade - should allow delete user with all database objects for Business role members
3.User Privileges - set different user privileges for Business role members, like commands:
SELECT_CATALOG_ROLE
DEBUG CONNECT SESSION
SELECT ANY TABLE
4. Grant connect through "proxy user" - set user grants for Business role members, like commands
"ALTER USER " + proxyUser + " GRANT CONNECT THROUGH " + userName;
5. Object Privileges - set different object privileges for Business role entitlements, like commands
insert on CONF.TGW_USERS
insert on CONF.TGW_ACTIONS
insert on CONF.TGW_PRIVILEGES
execute on SPDB.PASS_PACK
How is it possible to develop all the features through Native Database Connector?
I would appreciate for any help.