Hi I would like to call an oracle stored multiple times, passing different parameters.
It seems only the first call is successful.
Any idea what is the correct syntax ?
begin
storedproc1(param1, parm2);
storedproc1(param3, parm4);
end;
I have also tried
FME_SQL_DELIMITER /
begin
storedproc1(param1, parm2);
storedproc1(param3, parm4);
end;
/