Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.misc -> Re: MGR-00072 package compilation error
On 29 Jan 1998 15:28:24 GMT, "Christophe SIERRA" <referentiel-m_at_dial.oleane.com> wrote:
>I try to create a package, but a warning message is displayed : "MGR-00072
>: warning : package created with compilation errors".
>
>The package is very simple : it is empty!!
>
>create package blob as
> procedure go(arg number);
>end;
>
>create package body blob as
> procedure go(arg number) is
> begin
> end;
>end;
>
>
>Does someone know what can cause this compilation error ?
>And about this code "MGR-00072" : I can't find precisions about it! What
>does it means?
>
>Thanks!
>Christophe SIERRA
>
Hi Christophe,
you cannot create an empty procedure. You must have at least
BEGIN
NULL;
END;
in it in order to get it compiled.
HTH
Peter
-- Peter Schneider peter.schneider_at_okay.netReceived on Thu Jan 29 1998 - 00:00:00 CST
![]() |
![]() |