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

Home -> Community -> Mailing Lists -> Oracle-L -> Re: Q: any idea what are we missing ?

Re: Q: any idea what are we missing ?

From: Juan Carlos Reyes Pacheco <juancarlosreyesp_at_gmail.com>
Date: Wed, 20 Sep 2006 14:06:16 -0400
Message-ID: <cd4305c10609201106k58b38419j1afdc119308ca39d@mail.gmail.com>


Hi amihay,

SQL> declare
  2 a number;
  3 begin
  4
  5 select 1 into a from dual where 1 = 0;   6 end;
  7 /
declare
*

ERROR at line 1:
ORA-01403: no se han encontrado datos
ORA-06512: en lİnea 5

SQL> select test from dual;

      TEST


SQL> declare
  2 a number;
  3 begin
  4 a := test;
  5 end;
  6 /
declare
*

ERROR at line 1:

ORA-01403: no se han encontrado datos
ORA-06512: en "DAZ.TEST", lİnea 5
ORA-06512: en lİnea 4

--
http://www.freelists.org/webpage/oracle-l
Received on Wed Sep 20 2006 - 13:06:16 CDT

Original text of this message

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