RAISE_APPLICATION_ERROR : Raise « 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 » Raise 
RAISE_APPLICATION_ERROR
   
SQL>
SQL> CREATE TABLE myStudent (
  2    student_id NUMBER(5NOT NULL,
  3    department CHAR(3)   NOT NULL,
  4    course     NUMBER(3NOT NULL,
  5    grade      CHAR(1)
  6    );

Table created.

SQL>
SQL> INSERT INTO myStudent (student_id, department, course, grade)
  2                           VALUES (10000'CS', 102'A');

row created.

SQL>
SQL> INSERT INTO myStudent (student_id, department, course, grade)
  2                           VALUES (10002'CS', 102'B');

row created.

SQL>
SQL> INSERT INTO myStudent (student_id, department, course, grade)
  2                           VALUES (10003'CS', 102'C');

row created.

SQL>
SQL> INSERT INTO myStudent (student_id, department, course, grade)
  2                           VALUES (10000'HIS', 101'A');

row created.

SQL>
SQL> INSERT INTO myStudent (student_id, department, course, grade)
  2                           VALUES (10001'HIS', 101'B');

row created.

SQL>
SQL> INSERT INTO myStudent (student_id, department, course, grade)
  2                           VALUES (10002'HIS', 101'B');

row created.

SQL> CREATE OR REPLACE FUNCTION AverageGrade (
  2    p_Department IN myStudent.department%TYPE,
  3    p_Course IN myStudent.course%TYPERETURN CHAR AS
  4
  5    v_AverageGrade CHAR(1);
  6    v_NumericGrade NUMBER;
  7    v_Numberlecturer NUMBER;
  8
  9    CURSOR c_Grades IS
 10      SELECT grade
 11        FROM myStudent
 12        WHERE department = p_Department
 13        AND course = p_Course;
 14  BEGIN
 15    SELECT COUNT(*)
 16      INTO v_Numberlecturer
 17      FROM myStudent
 18      WHERE department = p_Department
 19        AND course = p_Course;
 20
 21    IF v_Numberlecturer = THEN
 22      RAISE_APPLICATION_ERROR(-20001'No lecturer registered for ' ||
 23        p_Department || ' ' || p_Course);
 24    END IF;
 25
 26    SELECT AVG(DECODE(grade, 'A'5,
 27                             'B'4,
 28                             'C'3,
 29                             'D'2,
 30                             'E'1))
 31      INTO v_NumericGrade
 32      FROM myStudent
 33      WHERE department = p_Department
 34      AND course = p_Course;
 35
 36    SELECT DECODE(ROUND(v_NumericGrade)5'A',
 37                                         4'B',
 38                                         3'C',
 39                                         2'D',
 40                                         1'E')
 41      INTO v_AverageGrade
 42      FROM dual;
 43
 44    RETURN v_AverageGrade;
 45  END AverageGrade;
 46  /

Function created.

SQL>
SQL> drop table myStudent;

Table dropped.

SQL>

   
    
  
Related examples in the same category
1.Raise your own exception
2.Raising an exception
3.Raising NO_DATA_FOUND Exception
4.Raise different exception depends on value input
5.Raise exceptions for wrong parameters
6.Print out an error message
7.Raises and manages a standard anonymous block PL/SQL program error.
8.This procedure demonstrates the use of RAISE_APPLICATION_ERROR.
9.Setting the message dynamically
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.