Hi
cterenzi/Rhall,
Thanks for your help.
Now I am trying to do some work around. ( Already tried that before , but couldn't succeed )
What if I run this query into tOracleRow ?
-------------------------------------------------------------------------------------------------------------------
( please ignore errors if there is any)
-------------------------------------------------------------------------------------------------------------------
declare
var_input clob := trim(',' from regexp_replace( ' " + context.output_unmatched + " ' ,']',null)) ;
var1 varchar2(4000);
vqr2 varchar2(4000);
var3 varchar2(4000);
var4 varchar2(4000);
vqr5 varchar2(4000);
var6 varchar2(4000);
begin
for i in (select tns from (
select null as tns from dual union all
(select regexp_substr(var_input,'+', 1, level) from dual
connect by regexp_substr(var_input, '+', 1, level) is not null)
) where tns is not null)
select col1 ,col2 ,col3
into var1,vqr2,var3
from my_table
where col1 in (i.tns);
var4 := var4 ||','|| var1;
var5 := var5 ||','|| var2;
var6 := var6 ||','|| var3;
end loop;
end;
-------------------------------------------------------------------------------------------------------------------
Is there any way , I can catch the values of var4 and var5 and var6 into context variables???
can we use output and send this to next step.
!!!!!!!!!!!
I am testing the possibilities for this. Hope this thing works