Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I need to implement SCD1 with t map. I don't want to use SCD component available in Talend.
I have a file with input columns:
case_number;
source
description
title
exist_flag
Target table columns:
case_id(Primary key)
case_number
source
description
title
exist_flag
My requirement is
INSERT the record- if input file's case_number does not match with target table's column case_number, insert a new record
UPDATE the record- if there is some change in the existing record and input file's case_number matches with target table's column case_number, then update the record. Also exist_flag will change to "Y"
I have tried it using tmap, INSERT is working perfectly but UPDATE functionality is not working.
Can somebody please help me out ?