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: Rookie question

Re: Rookie question

From: Gerard H. Pille <ghp_at_santens.be>
Date: 1997/10/17
Message-ID: <01bcdae5$9144c360$7b1340c0@pcghp.santens.be>#1/1

Because you don't tell Oracle what to do with the selected information.

as in:

select * into ...
 from emp_hist;

-- 
------------
Kind reGards
     \ /   |
      X    |
     / \   x
     Gerard

rsenn <rsenn_at_capaccess.org> schreef in artikel
<3446B880.7EA9F732_at_capaccess.org>...

> Can anybody tell me why these statements are generating errors?
> Thanks.
>
> SQL> create or replace procedure test
> 2 is
> 3 begin
> 4 select * from emp_hist ;
> 5 end test ;
> 6 /
>
> Warning: Procedure created with compilation errors.
>
> SQL> create or replace procedure test
> 2 (v_dummy out number)
> 3 is
> 4 begin
> 5 select * from emp_hist ;
> 6 end test ;
> 7 /
>
> Warning: Procedure created with compilation errors.
>
>
>
Received on Fri Oct 17 1997 - 00:00:00 CDT

Original text of this message

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