Hi Daniel,
It is about execution block.
Can you try using
create procedure TEST_PROC ()
as
begin
temp = SELECT a, b,c from atable;
begin
DECLARE CURSOR cur FOR SELECT * FROM :temp;
-- Do your processing here
end;
end;
Hi Daniel,
It is about execution block.
Can you try using
create procedure TEST_PROC ()
as
begin
temp = SELECT a, b,c from atable;
begin
DECLARE CURSOR cur FOR SELECT * FROM :temp;
-- Do your processing here
end;
end;