-- ------------------------------------------------------------------------------------------------
-- sqlplus / as sysdba
-- alter sessioin set container=NDB;
-- grant all on sys.dbms_crypto to bsys;
-- ------------------------------------------------------------------------------------------------
conn bcom/1234@ndb;
-- 시노님 생성
create or replace synonym sys_log_api for bsys.sys_log_api;
create or replace synonym sys_country_api for bsys.sys_country_api;
create or replace synonym sys_profile_api for bsys.sys_profile_api;
-- ------------------------------------------------------------------------------------------------
conn bhrm/1234@ndb;
-- 시노님 생성
create or replace synonym sys_log_api for bsys.sys_log_api;
create or replace synonym sys_country_api for bsys.sys_country_api;
create or replace synonym sys_profile_api for bsys.sys_profile_api;
-- ------------------------------------------------------------------------------------------------
conn system/built123$@ndb;
-- 역할 생성
grant execute, debug on bsys.sys_log_api to bcom with grant option;
grant execute, debug on bsys.sys_log_api to bhrm with grant option;
grant execute, debug on bsys.sys_country_api to bcom with grant option;
grant execute, debug on bsys.sys_country_api to bhrm with grant option;
grant execute, debug on bsys.sys_profile_api to bcom with grant option;
grant execute, debug on bsys.sys_profile_api to bhrm with grant option;
'오라클 > 패키지(시스템관리)' 카테고리의 다른 글
[ 프로파일 ] sys_profile_api 패키지를 생성합니다. (0) | 2024.04.12 |
---|---|
[ 국가 ] sys_country_api 패키지를 생성합니다. (0) | 2024.04.12 |
[ 로그인 세션정보 관리 ] sys_login_api 패키지를 생성합니다. (0) | 2024.04.12 |
[ 암복호화 ] sys_crypto_api 패키지를 생성합니다. (0) | 2024.04.12 |