ORA-01403: no data found exception from procedure : ORA Error « System Packages « Oracle PL / SQL

Oracle PL / SQL
1. Aggregate Functions
2. Analytical Functions
3. Char Functions
4. Constraints
5. Conversion Functions
6. Cursor
7. Data Type
8. Date Timezone
9. Hierarchical Query
10. Index
11. Insert Delete Update
12. Large Objects
13. Numeric Math Functions
14. Object Oriented Database
15. PL SQL
16. Regular Expressions
17. Report Column Page
18. Result Set
19. Select Query
20. Sequence
21. SQL Plus
22. Stored Procedure Function
23. Subquery
24. System Packages
25. System Tables Views
26. Table
27. Table Joins
28. Trigger
29. User Previliege
30. View
31. XML
Java
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Oracle PL / SQL » System Packages » ORA Error 
ORA-01403: no data found exception from procedure
  
SQL> CREATE TABLE emp (
  2    id         NUMBER PRIMARY KEY,
  3    fname VARCHAR2(50),
  4    lname  VARCHAR2(50)
  5  );

Table created.

SQL>
SQL> INSERT INTO emp (id, fname, lname)VALUES (1'A''B');

row created.

SQL> INSERT INTO emp (id, fname, lname)VALUES (2'C''D');

row created.

SQL> INSERT INTO emp (id, fname, lname)VALUES (3'Enn', 'F');

row created.

SQL> INSERT INTO emp (id, fname, lname)VALUES (4'G''H');

row created.

SQL> INSERT INTO emp (id, fname, lname)VALUES (5'G''Z');

row created.

SQL>
SQL> PROMPT as bind variables
as bind variables
SQL>
SQL> CREATE OR REPLACE PROCEDURE bind_test (i_emp_fname IN emp.fname%TYPE)
  2  IS
  3     v_emp_lname emp.lname%TYPE;
  4  BEGIN
  5     SELECT lname INTO v_emp_lname FROM emp WHERE fname = i_emp_fname;
  6
  7     DBMS_OUTPUT.PUT_LINE(i_emp_fname||' has a last name of '||v_emp_lname);
  8  EXCEPTION
  9     WHEN OTHERS
 10     THEN
 11        DBMS_OUTPUT.PUT_LINE(sqlerrm);
 12  END;
 13  /

Procedure created.

SQL>
SQL>
SQL> ALTER SESSION SET SQL_TRACE = TRUE;

Session altered.

SQL> EXEC bind_test('Ron')
ORA-01403: no data found

PL/SQL procedure successfully completed.

SQL> EXEC bind_test('Mike')
ORA-01403: no data found

PL/SQL procedure successfully completed.

SQL> ALTER SESSION SET SQL_TRACE = FALSE;

Session altered.

SQL>
SQL> drop table emp;

Table dropped.

SQL>

   
    
  
Related examples in the same category
1. ORA-00918: column ambiguously defined
2. ORA-00934: group function is not allowed here
3. ORA-00979: not a GROUP BY expression
4. ORA-01403: no data found
5. ORA-01422: exact fetch returns more than requested number of rows
6. ORA-01426: numeric overflow
7. ORA-01839: date not valid for month specified
8. ORA-06502: PL/SQL: numeric or value error
9. ORA-06502: PL/SQL: numeric or value error: character to number conversion error
10. ORA-06502: PL/SQL: numeric or value error: number precision too large
11. ORA-06503: PL/SQL: Function returned without value
12. ORA-14551: cannot perform a DML operation inside a query
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.