Hi! I'm receiving this warning message when I insert several data from a CSV file in a Database Table (the violation of a Constraint): ORA-00001: unique constraint (XXXX.TABLE_UK_1) violated How can I "ignore" the row that is causing this warning, and continue processing the remaining data? Thanks.
Hi
It have ignored the rows that violates the unique constraint and continue to process the remaining data, if you check the 'die on error' option on DB output component, the job will throw the java exception and stop to execute; if you uncheck the 'die on error' option, the job will capture the problematic rows and continue to execute, link a rejects connector from DB output component to a tLogRow, you will see all the problematic rows, for example:
tFileInputDelimited--main--tOracleOutput--rejects--tLogRow
Shong