Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Is this legal?
I know in a package I could have something similar to:
PROCEDURE procedure_name
IS
PROCEDURE local_procedure
IS
BEGIN
...
END;
BEGIN
body of procedure ...
END; My question is can the same thing be done inside an anonymous block within a script file like:
DECLARE
PROCEDURE local_procedure
IS
BEGIN
...
END;
BEGIN
...
END;
Thanks.
Received on Thu Mar 01 2007 - 19:36:03 CST
![]() |
![]() |