Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi ,
tfixedflowinput -> tmap -> titeratetoflow -> Oraclerow
I have three input values to be iterated in this flow.For each input , once the iteration is complete , I want to update a flag in a redshift table to success. or if the iteration fails for another value , it should be updated to failure. Each iteration execution has to be captured separately.
But Im unable to update the flag for each iteration.Below flow is failing.
tfixedflowinput -> tmap -> titeratetoflow -> Oraclerow -> main -> tredshiftrow.
if we use onsubjobok , Im unable to capture each iteration separately.
Please help.
Hi,
Please use On Component Ok in your use case.
tfixedflowinput -> tmap -> titeratetoflow -> Oraclerow -> On Component Ok-> tredshiftrow (success flow)
|---> On Component Error-> tredshiftrow (failure flow)
Warm Regards,
Nikhil Thampi
Please appreciate our Talend community members by giving Kudos for sharing their time for your query. If your query is answered, please mark the topic as resolved
Hi,
Please use On Component Ok in your use case.
tfixedflowinput -> tmap -> titeratetoflow -> Oraclerow -> On Component Ok-> tredshiftrow (success flow)
|---> On Component Error-> tredshiftrow (failure flow)
Warm Regards,
Nikhil Thampi
Please appreciate our Talend community members by giving Kudos for sharing their time for your query. If your query is answered, please mark the topic as resolved
Thanks ! It is working fine.