Identity Resolution
- Identity Resolution 10.5
- All Products
wherelogical-file-definition *====================== NAME= lf-input PHYSICAL-FILE= "VirtualTable" COMMENT= "input from SQL database" FORMAT= SQL ... Section: User-Source-Tables CREATE_IDT VirtualTable,FileNo SOURCED_FROM [connection_string] source_clause [TRANSFORM transform_clause] [SELECT_BY select_clause] [NOSYNC] ;
whereodb:99:Userid/Password@Service
where[src_schema.]table.column [tgt_fld [fmt(len)]] [,...]
wheretransform_rule tgt_fld fmt(len) [order n] [,...]
whereSource-Id Insert-Constant ("text") Upper (vf) Lower (vf) Insert-Field (vf, offset, ...) Append ( vf | lower (vf) | upper (vf) | "text" , ... ) Concat ( vf | lower (vf) | upper (vf) | "text" , ... )
select_by ROWNUM <= 1000
This ensures a repeatable set of records.select_by EmpId >= 50000 AND EmpId <= 51000
CREATE_IDT SQLinput,1 SOURCED_FROM ora:99:scott/tiger@server734 SCOTT.EMP.EMPNO EmpNo, SCOTT.EMP.ENAME EmployeeName SELECT_BY scott.emp.empno > 7800 ;
logical-file-definition *====================== NAME= lf-input PHYSICAL-FILE= "SQLinput" COMMENT= "input from Oracle database" FORMAT= SQL AUTO-ID-NAME= JobN