Hi,
I need a step by step process that works to call an oracle procedure with IN/OUT parameters in SSIS 2012.
MY oracle procedure is very simple, this is basically a test procedure, which if works I will use the approach for all my real world procedures.
I have pasted the procedure below:
create or replace procedure demo_ssis_test(IN_PARM varchar2, out_parm out number)
as
begin
select 1 into out_parm from dual;
end;
/
How do i call this procedure using user defined variable from an ssis package and store the result in another user_defined variable?
Please help.
I need it urgently.
Thanks a ton,
KAy