분류 전체보기93 [ 권한메뉴 ] 테이블 생성을 아래와 같이 진행합니다. -- ------------------------------------------------------------------------------------------------ -- [ 공통관리] 권한메뉴 테이블 생성 conn system/built123$@ndb; -- ------------------------------------------------------------------------------------------------ -- 테이블 생성 drop table bcom.com_auth_menu cascade constraints; create table bcom.com_auth_menu ( corp_id number not null ,auth_menu_id number not null.. 2024. 4. 12. [ 메뉴 ] 테이블 생성을 아래와 같이 진행합니다. -- ------------------------------------------------------------------------------------------------ -- [ 공통관리] 메뉴 테이블 생성 conn system/built123$@ndb; -- ------------------------------------------------------------------------------------------------ -- 테이블 생성 drop table bcom.com_menu cascade constraints; create table bcom.com_menu ( corp_id number not null ,menu_id number not null ,menu_name varch.. 2024. 4. 12. [ 사용자권한 ] 테이블 생성을 아래와 같이 진행합니다. -- ------------------------------------------------------------------------------------------------ -- [ 공통관리] 사용자권한 테이블 생성 conn system/built123$@ndb; -- ------------------------------------------------------------------------------------------------ -- 테이블 생성 drop table bcom.com_user_auth cascade constraints; create table bcom.com_user_auth ( corp_id number ,user_auth_id number not null ,user_i.. 2024. 4. 12. [ 권한 ] 테이블 생성을 아래와 같이 진행합니다. -- ------------------------------------------------------------------------------------------------ -- [ 공통관리] 권한 테이블 생성 conn system/built123$@ndb; -- ------------------------------------------------------------------------------------------------ -- 테이블 생성 drop table bcom.com_auth cascade constraints; create table bcom.com_auth ( corp_id number ,auth_id number not null ,auth_cd varchar2(50) not.. 2024. 4. 12. [ 사용자 ] 테이블 생성을 아래와 같이 진행합니다. -- ------------------------------------------------------------------------------------------------ -- [ 공통관리] 사용자 테이블 생성 conn system/built123$@ndb; -- ------------------------------------------------------------------------------------------------ -- 테이블 생성 drop table bcom.com_user cascade constraints; create table bcom.com_user ( corp_id number ,user_id number not null ,user_cd varchar2(50) no.. 2024. 4. 12. [ 코드 ] 테이블 생성을 아래와 같이 진행합니다. -- ------------------------------------------------------------------------------------------------ -- [ 공통관리] 코드 테이블 생성 conn system/built123$@ndb; -- ------------------------------------------------------------------------------------------------ -- 테이블 생성 drop table bcom.com_code cascade constraints; create table bcom.com_code ( corp_id number ,code_id number ,code_type_id number ,code varchar.. 2024. 4. 12. [ 코드유형 ] 테이블 생성을 아래와 같이 진행합니다. -- ------------------------------------------------------------------------------------------------ -- [ 공통관리] 코드유형 테이블 생성 conn system/built123$@ndb; -- ------------------------------------------------------------------------------------------------ -- 테이블 생성 drop table bcom.com_code_type cascade constraints; create table bcom.com_code_type ( corp_id number ,code_type_id number not null ,code_ty.. 2024. 4. 12. [ 우편번호 ] 테이블 생성을 아래와 같이 진행합니다. -- ------------------------------------------------------------------------------------------------ -- [ 시스템관리 ] 우편번호 테이블 생성 conn system/built123$@ndb; -- ------------------------------------------------------------------------------------------------ -- 테이블 생성 drop table bsys.sys_postal_code cascade constraints; create table bsys.sys_postal_code ( postal_id number ,postal_cd varchar2(5) ,sido v.. 2024. 4. 12. [ 프로파일 ] 테이블 생성을 아래와 같이 진행합니다. -- ------------------------------------------------------------------------------------------------ -- [ 시스템관리 ] 프로파일 테이블 생성 conn system/built123$@ndb; -- ------------------------------------------------------------------------------------------------ -- 테이블 생성 drop table bsys.sys_profile cascade constraints; create table bsys.sys_profile ( corp_id number not null ,profile_id number not null ,pr.. 2024. 4. 12. 이전 1 2 3 4 5 6 7 ··· 11 다음