Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I need to run a stored procedure in which I would pass a parameter and update a filed. This stored procedure would be executed after updating a table. I have not been able to set the parameters in Talend to pass it over to SP. How can I achieve this. This is fairly a simple task but unable to achieve it.
This is the simple SP which I need to run
create or replace PROCEDURE UPDATE_PROCESSED_FILE_LIST
(
FILE_NAME IN VARCHAR2
) AS
BEGIN
update file_list set FILE_PROCESSED = 'Yes' where file_name = FILE_NAME;
END UPDATE_PROCESSED_FILE_LIST;
@sunbaj , once you process the file successfully the take on component ok from the tDBoutput and design the next job the way I thave give and in the filename column pass the global variable of the filename which you were iterating.