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 -> Re: help! ...compilation error running a simple procedure

Re: help! ...compilation error running a simple procedure

From: Ron Reidy <rereidy_at_uswest.net>
Date: Wed, 14 Apr 1999 19:37:09 -0600
Message-ID: <371542C5.72306E06@uswest.net>

dnanda wrote:

> i'm in a fix ....i am trying to run a procedure which is not running on
> sql*plus 8.0
> create or replace procedure get_data(cl_no IN client_master.client_no%type)
> is
> cname client_master.name%type;
> cursor c1(cno) is select name from client_master where client_no=cno;

What type of data is a "cno"?

>
> begin
> open c1(cl_no);
> loop
> fetch c1 into cname;
> exit when getdata%notfound;
> end loop;
> close c1;
> end;
>
> this procedure is showing compilation errors and sometimes saying that the
> object already exists..i have also tried changing names.


Received on Wed Apr 14 1999 - 20:37:09 CDT

Original text of this message

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