본문 바로가기
  • 노란색 세상은 어디에 있을까?
  • 봄이 오면 여기에 있겠지.
  • 잠시나마 유유자적 하겠네.

오라클60

[ 업무코드 및 명칭조회 ] sys_get_api 패키지를 생성합니다. create or replace package bsys.sys_get_api is -- 고정변수 정의 c_package_name constant varchar2(0200) default 'sys_get_api'; -- 함수 정의 function dft_lang_cd_f return varchar2; function dft_corp_id_f return number; function code_name_f (pi_code_type_cd in varchar2 -- 코드유형 ,pi_code in varchar2 -- 코드 ) return varchar2; function emp_name_f (pi_emp_id in number -- 임직원id ) return varchar2; function corp_name_.. 2024. 4. 12.
[ 세션정보 ] sys_env_f 함수를 생성합니다. create or replace function bsys.sys_env_f (pi_env_cd in varchar2 -- 환경변수코드 ) return varchar2 /* ******************************************************************************************** * 업 무 단 위 : 시스템관리 * 패 키 지 : bsys.sys_env_f * 사 용 목 적 : 세션정보 조회 함수 * 스크립트명칭 : 시스템관리_펑션_환경정보_생성 * 생 성 일 자 : 2023-12-30 * 생 성 자 : Admin ----------------------------------------------------------------------------.. 2024. 4. 12.
[ 발령 ] 테이블 생성을 아래와 같이 진행합니다. -- ------------------------------------------------------------------------------------------------ -- [ 인사관리 ] 발령 테이블 생성 conn system/built123$@ndb; -- ------------------------------------------------------------------------------------------------ -- 테이블 생성 drop table bhrm.hrm_assignment cascade constraints; create table bhrm.hrm_assignment ( corp_id number not null ,asg_id number not null ,asg.. 2024. 4. 12.
[ 임직원기본 ] 테이블 생성을 아래와 같이 진행합니다. -- ------------------------------------------------------------------------------------------------ -- [ 인사관리 ] 임직원기본 테이블 생성 conn system/built123$@ndb; -- ------------------------------------------------------------------------------------------------ -- 테이블 생성 drop table bhrm.hrm_employee_basic cascade constraints; create table bhrm.hrm_employee_basic ( emp_id number not null ,group_hire_date d.. 2024. 4. 12.
[ 임직원 ] 테이블 생성을 아래와 같이 진행합니다. -- ------------------------------------------------------------------------------------------------ -- [ 인사관리 ] 임직원 테이블 생성 conn system/built123$@ndb; -- ------------------------------------------------------------------------------------------------ -- 테이블 생성 drop table bhrm.hrm_employee cascade constraints; create table bhrm.hrm_employee ( corp_id number not null ,emp_id number not null ,emp_nu.. 2024. 4. 12.
[ 조직도상세 ] 테이블 생성을 아래와 같이 진행합니다. -- ------------------------------------------------------------------------------------------------ -- [ 인사관리 ] 조직도상세 테이블 생성 conn system/built123$@ndb; -- ------------------------------------------------------------------------------------------------ -- 테이블 생성 drop table bhrm.hrm_dept_hierarchy_detail cascade constraints; create table bhrm.hrm_dept_hierarchy_detail ( dept_hierarchy_detail_id nu.. 2024. 4. 12.
[ 조직도 ] 테이블 생성을 아래와 같이 진행합니다. -- ------------------------------------------------------------------------------------------------ -- [ 인사관리 ] 조직도 테이블 생성 conn system/built123$@ndb; -- ------------------------------------------------------------------------------------------------ -- 테이블 생성 drop table bhrm.hrm_dept_hierarchy cascade constraints; create table bhrm.hrm_dept_hierarchy ( corp_id number not null ,dept_hierarchy_id .. 2024. 4. 12.
[ 사업장 ] 테이블 생성을 아래와 같이 진행합니다. -- ------------------------------------------------------------------------------------------------ -- [ 인사관리 ] 부서 테이블 생성 conn system/built123$@ndb; -- ------------------------------------------------------------------------------------------------ -- 테이블 생성 drop table bhrm.hrm_dept cascade constraints; create table bhrm.hrm_dept ( corp_id number not null ,dept_id number not null ,dept_cd varcha.. 2024. 4. 12.
[ 사업장 ] 테이블 생성을 아래와 같이 진행합니다. -- ------------------------------------------------------------------------------------------------ -- [ 인사관리 ] 사업장 테이블 생성 conn system/built123$@ndb; -- ------------------------------------------------------------------------------------------------ -- 테이블 생성 drop table bhrm.hrm_business_place cascade constraints; create table bhrm.hrm_business_place ( corp_id number not null ,biz_id number not .. 2024. 4. 12.