This script demonstrates user defined exceptions : Predefined Exceptions « PL SQL « Oracle PL / SQL

Home
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
Oracle PL / SQL » PL SQL » Predefined Exceptions 




This script demonstrates user defined exceptions
    
SQL> CREATE TABLE book (
  2    isbn      CHAR(10PRIMARY KEY,
  3    category  VARCHAR2(20),
  4    title     VARCHAR2(100),
  5    num_pages NUMBER,
  6    price     NUMBER,
  7    copyright NUMBER(4),
  8    emp1   NUMBER,
  9    emp2   NUMBER,
 10    emp3   NUMBER
 11  );

Table created.

SQL>
SQL> INSERT INTO book (isbn, category, title, num_pages, price, copyright, emp1, emp2, emp3)
  2             VALUES ('1''Database', 'Oracle', 56339.991999123);

row created.

SQL> INSERT INTO book (isbn, category, title, num_pages, price, copyright, emp1, emp2)
  2             VALUES ('2''Database', 'MySQL', 76544.99199945);

row created.

SQL> INSERT INTO book (isbn, category, title, num_pages, price, copyright, emp1, emp2, emp3)
  2             VALUES ('3''Database', 'SQL Server', 40439.992001678);

row created.

SQL>
SQL>
SQL> DECLARE
  2    e_Duplicateemp EXCEPTION;
  3
  4    v_emp1 book.emp1%TYPE;
  5    v_emp2 book.emp2%TYPE;
  6    v_emp3 book.emp3%TYPE;
  7  BEGIN
  8    SELECT emp1, emp2, emp3 INTO v_emp1, v_emp2, v_emp3 FROM book WHERE title = 'XML';
  9
 10    IF (v_emp1 = v_emp2OR (v_emp1 = v_emp3OR (v_emp2 = v_emp3THEN
 11       RAISE e_Duplicateemp;
 12    END IF;
 13  END;
 14  /
DECLARE
*
ERROR at line 1:
ORA-01403: no data found
ORA-06512: at line 8


SQL>
SQL> drop table book;

Table dropped.

   
    
    
    
  














Related examples in the same category
1.Predefined exceptions: WHEN ZERO_DIVIDE
2.If an ordering is applied, it occurs after the WHERE has been executed
3.NO_DATA_FOUND Exception
4.This block illustrates the behavior of a predefined exception
5.This script demonstrates the scope of exceptions.
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.