
select *
from dba_roles
where role in ( 'CONNECT', 'RESOURCE','DBA', 'SELECT_CATALOG_ROLE');
create user cupang_user1
identified by tiger;
grant connect, resource to cupang_user1;
select *
from role_sys_privs
where role='RESOURCE';
select *
from session_roles;
create role role1;
grant create table to role1;
grant create procedure to role1;
grant role1 to cupang_user1;
maxguage나 셀파소프트 프로그램을 고객사에 가서 설치하기 전에 미리 고객에게 메일을 보내는데, 아래의 유저를 만들고 권한을 부여해달라고 스크립트를 고객에게 그대로 줍니다.
유져명: selfa
패스워드: selfa
권한 : select_catalog_role
create user selfa
identified by selfa;
grant connect to selfa;
grant select_catalog_role to selfa;