-- ------------------------------------------------------------------------------------------------
-- [공통관리] 권한 시퀀스 생성
conn system/built123$@ndb;
-- ------------------------------------------------------------------------------------------------
-- 시퀀스 생성
drop sequence bcom.com_auth_s;
create sequence bcom.com_auth_s
minvalue 1
maxvalue 999999999999
start with 10000
increment by 1
order;
-- 권한 부여
grant select on bcom.com_auth_s to bsys with grant option;
grant select on bcom.com_auth_s to bhrm with grant option;
-- 시노님 생성
conn bsys/1234@ndb;
create or replace synonym com_auth_s for bcom.com_auth_s;
conn bhrm/1234@ndb;
create or replace synonym com_auth_s for bcom.com_auth_s;
'오라클 > 시퀀스(공통관리)' 카테고리의 다른 글
[ 메뉴 ] 시퀀스 생성을 아래와 같이 진행합니다. (0) | 2024.04.07 |
---|---|
[ 사용자권한 ] 시퀀스 생성을 아래와 같이 진행합니다. (0) | 2024.04.07 |
[ 사용자 ] 시퀀스 생성을 아래와 같이 진행합니다. (0) | 2024.04.07 |
[ 코드 ] 시퀀스 생성을 아래와 같이 진행합니다. (0) | 2024.04.07 |
[ 코드유형 ] 시퀀스 생성을 아래와 같이 진행합니다. (0) | 2024.04.04 |