Hi ,
I have created a stored procedure in oracle which has two parameters.Normally when we run in oracle it will ask the parameter values and when we enter the values it will generate the data in corresponding table with respective to the parameter values.
Same way i want to run the Oracle Stored procedure in Talend by passing two parameters.
Please Suggest me which transformations should i use.Some one explain me step by step as am very new to Talend.
Please help me out as soon as possible.
DECLARE
id number:=10;
name VARCHAR2(20);
BEGIN
PUT_LINE(); ---this is my stored procedure containing one DBMS_OUT.put_line('xyz') only
NAME:=GET_NEXT_LINE(); ---this is function i have used to get values from buffer
DBMSOUTPUT(id,name); --again procedure call i am using it to store return value in my table
END;
so this is my complete block of code..
please tell me which component i can use to write it in talend..
also please tell where can i give (SET SERVEROUTPUT On
command in talend before executing my block of code
Hi yogeshmalekar, What's the DB you are using? Have you already checked talend tXXXSP component which is used to offers a convenient way to centralize multiple or complex queries in a database and call them easily to see if it works? Best regards Sabrina