Skip to Main Content

Data Lake & Services

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Error Handling in Data Integration

PV5253May 22 2025

Hi Experts,

I have source (SRC_TBL_EMP) and target table (TRG_TBL_EMP). Source having duplicate data and target have primary key on column EMPNO. When data comes from source to target then data flow will fail. In this case how to handle error out data with appropriate error messages into another table. Please help me here. Below is the data flow sample and table structure.

Thanks!

SRC_TBL_EMP

Name   Null?    Type         
------ -------- ------------ 
EMPNO           NUMBER(4)    
ENAME           VARCHAR2(10) 
JOB             VARCHAR2(9)  
MGR             NUMBER(4)    
SAL             NUMBER(7,2)  
COMM            NUMBER(7,2)  
DEPTNO          NUMBER(2)

TRG_TBL_EMP

Name   Null?    Type         
------ -------- ------------ 
EMPNO  NOT NULL NUMBER(4)    
ENAME           VARCHAR2(10) 
JOB             VARCHAR2(9)  
MGR             NUMBER(4)    
SAL             NUMBER(7,2)  
COMM            NUMBER(7,2)  
DEPTNO          NUMBER(2)
Comments
Post Details
Added on May 22 2025
0 comments
91 views