This content has been marked as final.
Show 2 replies
-
1. Re: Lookup & Insert
Nico Heinze Aug 31, 2020 9:42 PM (in response to Christine Choy)I would basically use the same approach as described here:
Connected Lookup Transformation - pass the text 'UNKNOWN' if not found.
Meaning you simply insert the new record into your target table, but before doing so you explicitly check whether the LKP on the GENDER column returned some value; if not, forward a NULL to your target, otherwise forward the return value of the LKP.
Does that make sense? Maybe I've worded this too complicated, hence my question.
Regards,
Nico
-
2. Re: Lookup & Insert
Christine Choy Aug 31, 2020 10:55 PM (in response to Nico Heinze)Thank you, i tested via using Expression transformation, it works perfectly.