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: Stored Procedure problem

Re: Stored Procedure problem

From: Kevin Bass <akil1_at_mindspring.com>
Date: Tue, 7 Mar 2000 06:17:04 -0500
Message-ID: <8a2ofp$s3g$1@slb0.atl.mindspring.net>


The line stating RDBMS_OUTPUT.PUT_LINE(i.name); is incorrect. Try using DBMS_OUTPUT.PUT_LINE(i.name);

Kevin

Samuel Wikberger <ia97swi_at_student.hk-r.se> wrote in message news:Js4x4.53$2h7.18246_at_newnews.hk-r.se...
> Hi,
>
> I have a problem when I try to create a Stored Procedure in my Oracle8i. I
> have tried the following:
>
> CREATE OR REPLACE PROCEDURE my_proc
> AS
> CURSOR my_cursor IS
> SELECT name FROM Person
> WHERE name LIKE '%c%';
> BEGIN
> FOR i IN my_cursor LOOP
> RDBMS_OUTPUT.PUT_LINE(i.name);
> END LOOP;
> END my_proc;
> /
>
> This won't work and I get an error message that looks something like
> "Procedure created with compilation errors".
> If anyone knows how to solve this problem, I would be very happy.
>
> /Samuel
>
>
Received on Tue Mar 07 2000 - 05:17:04 CST

Original text of this message

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