Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.misc -> Re: Function Call in PL/SQL script
I guess you mean an anonymous plsql-block
no problem - here is a template
declare
procedure xx is
begin
....
end;
begin
loop
xx;
end loop;
end;
/
Regards
Kurt Laugesen
kurtL_at_corebit.dk
![]() |
![]() |