Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Connect 2026! Turn data into bold moves, April 13 -15: Learn More!
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Data on one Oracle DB, needs to call Sp on another server

Hello,

 

This is my first post and my first day of Talend Open Studio. I have two Oracle servers. On Server A, I need to query a database to get the id and department of an employee. Currently, it holds 10 rows. I need to utilize that information to call a stored on a different Oracle Database server (B). The SP is newEmployee(p_id IN VARCHAR2, p_dept IN VARCHAR2) which is used to execute a whole set of events. I am not sure how to do this. I have successfully queried DB A and retrieved all 10 rows via tOracleConnection -> OnSubjobOK -> tOracleInput. I am not sure what to do next.  Any help would be appreciated while I get used to this data integration tool!

Labels (1)
1 Solution

Accepted Solutions
Anonymous
Not applicable
Author

I could not get this to work but it did lead me to the solution.

 

tOracleConnection (1st server) ->  

   |

OnComponentOk

   |

tOracleInput -> tOracleSP (using repository for server2)

 

 

View solution in original post

2 Replies
TRF
Champion II
Champion II

Hi,

Welcome on the Talend Community Forum.

Use this design for your case:

 

tOracleConnection (1st server) -> OnComponentOk -> tOracleInput

   |

OnSubjobOK

   |

tOracleConnection (2nd server) -> OnComponentOk -> tOracleSP (to call the SP)

 

Does this helps?

Anonymous
Not applicable
Author

I could not get this to work but it did lead me to the solution.

 

tOracleConnection (1st server) ->  

   |

OnComponentOk

   |

tOracleInput -> tOracleSP (using repository for server2)