user permissions to run the OSM installer.
edited Dec 12, 2012 6:34PM in Order and Service Management (Communications Industry) (MOSC) 2 comments
Following are the DB permissions required for a user to run the OSM installer without using SYS user.
grant connect to USER with admin option;
grant resource to USER with admin option;
grant create user to USER with admin option;
grant create any context to USER with admin option;
grant select on sys.dba_users to USER with grant option;
grant select on sys.dba_objects to USER with grant option;
grant select on sys.v_$temp_extent_map to USER with grant option;
grant select on sys.v_$temp_extent_pool to USER with grant option;
grant select on sys.dba_free_space to USER with grant option;
grant resource to USER with admin option;
grant create user to USER with admin option;
grant create any context to USER with admin option;
grant select on sys.dba_users to USER with grant option;
grant select on sys.dba_objects to USER with grant option;
grant select on sys.v_$temp_extent_map to USER with grant option;
grant select on sys.v_$temp_extent_pool to USER with grant option;
grant select on sys.dba_free_space to USER with grant option;
0