Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.misc -> Re: MGR-00072 package compilation error

Re: MGR-00072 package compilation error

From: Peter Schneider <peter.schneider_at_okay.net>
Date: 1998/01/29
Message-ID: <34d0dda6.4582265@news.okay.net>#1/1

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.net
Received on Thu Jan 29 1998 - 00:00:00 CST

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US