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

Home -> Community -> Usenet -> c.d.o.server -> create procedure error

create procedure error

From: Norris <johnnie_at_cooper.com.hk>
Date: 10 Jun 1999 06:30:21 GMT
Message-ID: <7jnm1t$1u5$1@imsp009a.netvigator.com>


The following statement could be processed sucessfully:

create or replace
procedure
/* comment */

myproc
as
begin
null;
end;

However, if I put the comment before the procedure, I got error

create or replace
/* comment */

procedure
myproc
as
begin
null;
end;

I don't know why? Received on Thu Jun 10 1999 - 01:30:21 CDT

Original text of this message

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