ETL Tools/Oracle Data Integrator 썸네일형 리스트형 [ODI 11g] Tip for development productivity 1. Interface 개발 = Excel Job info(Project & Folder, Source / Target Model, Interface name, SQL) list + interface interpreter2. Package 개발 = Template 복사 + Repository를 통한 Interface 연결 변경 & Name update 수행 - 패키지 내부 인터페이스 연결 정보 수정: snp_step.step_name, snp_step.i_pop - 패키지 명 수정: snp_package.pack_name to be ... excel for development using odi sdk. 더보기 [ODI] LOG Levels in Oracle Data Integrator 작업시 참고 0=> No Log1=> Displays the start and end of each session2=> Displays level 1 and the start and end of each step3=> Displays level 2 and each task executed4=> Displays the SQL queries executed, as well as level 35=> A complete trace, inclueds level 46=> Log level 6 has the same behavior as log level 5, but with the addition of variable tracking while execution or restarting jobs. ref. http.. 더보기 [ODI 11g] ODI SESSION MONITORING VIEW -- it is sql for monitoring all ODI Sessions status for 5 days fromODI Repository tables based SNP_SESSION and SNP_PLAN_AGENT.-- if you need, get it.-- it contains the session info not loadplan-- it is based of ODI 11.1.1.7.0 repository-- written by cheon on 2015/06/12 CREATE OR REPLACE VIEW V_ETL_MNT AS WITH A AS (SELECT SCEN_NAME, SCEN_VERSION, MAX(SESS_BEG) SESS_BEG , MAX(DECODE(RN,1,SESS_STA.. 더보기 [ODI 11G Repository] Purge Log by Manual through Procedure more about How To Manually Delete ODI Sessions And Scenario-Related Reports (Doc ID 424740.1) https://support.oracle.com/epmos/faces/DocumentDisplay?_afrLoop=68491857791385&id=424740.1&_afrWindowMode=0&_adf.ctrl-state=vmkjp9nwu_95 CREATE OR REPLACE PROCEDURE REPWRK_DMP.ODI_DELETE_LOG_BYDATE/***Author : WideTNS Co.Usage : exec ODI_DELETE_LOG_BYDATE('20100101000000');Producted date : 2015.03.30***.. 더보기 [ODI] 단순 쿼리 ETL 작업 개발 주제 단순 Migration 작업 생성(DB to DB)/* 2014.11.22 천정현 작성 */ 설명 단순 Select Insert 방식으로 구현이 가능한 방법으로 ETL 을 위한 별도 로직을 심거나 수정하기는 어렵지만,(Merge/ Delete insert / Update ..) 데이터를 한번에 넘기거나, 구간을 정의해서 넘길때 유용하게 사용 가능 하다. 구성 방법 - Source System 에서 Select 부분 변수 처리 [자동 or 수동 생성] - Target SystemInsert 부분 변수 처리 [자동 생성] - Filter 사용시 수동 설정 - 프로시저를 통한 작업 수행 사용 코드 - variable 1. insert {refresh: select 'insert into -.#table .. 더보기 이전 1 2 3 4 ··· 27 다음