Reputation: 1
I have 2 input sources :
Input is :- tOracleInput_1
Input is :- tOracleInput_2
Now I want to use tMap for data process and then load these 2 inputs into a single tOracleOutput.
How to do this?
Upvotes: 0
Views: 197
Reputation: 8239
The main question is what you mean by "data process".
a) If you just got two similar pipelines I'd create 2 Talend jobs for every data flow.
b) If you want to join the data in the tMap, you can simply use the lookup function of the tMap to join the data and then connect a tOracleOutput
.
Upvotes: 1
Reputation: 451
Use tUnite component to connect both tOracleInput_1 and tOracleInput_2 than connect tUnite to tMap with main flow and from tMap connect a single tOracleOutput with main.
Hope this help
Upvotes: 0