Trigger to check the employee count per department : Business Logic Trigger « Trigger « 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 » Trigger » Business Logic Trigger 
Trigger to check the employee count per department
 
SQL> 
SQL> CREATE TABLE employee(
  2           emp_id           INTEGER,
  3           emp_name         VARCHAR2(32),
  4           supervised_by    INTEGER,
  5           pay_rate         NUMBER(9,2),
  6           pay_type         CHAR);

Table created.

SQL> CREATE TABLE department
  2         (dept_id           INTEGER,
  3          dept_name         VARCHAR2(32));

Table created.

SQL>
SQL> ALTER TABLE department
  2  ADD CONSTRAINT pk_dept PRIMARY KEY (dept_id);

Table altered.

SQL>
SQL> CREATE TABLE emp_dept (emp_id INTEGER, dept_id INTEGER, CONSTRAINT unq_1 unique (emp_id, dept_id));

Table created.

SQL>
SQL>     CREATE OR REPLACE TRIGGER only_two_departments
  2        BEFORE UPDATE OR INSERT ON emp_dept
  3        FOR EACH ROW
  4      DECLARE
  5        dept_count  INTEGER;      --# of depts for this employee
  6        max_depts   INTEGER := 2; --max number of depts per employee.
  7      BEGIN
  8        SELECT COUNT(*INTO dept_count
  9         FROM emp_dept
 10        WHERE emp_id = :NEW.emp_id;
 11
 12       IF :OLD.emp_id = :NEW.emp_id THEN
 13         RETURN;
 14       ELSE
 15         IF dept_count >= max_depts THEN
 16           RAISE_APPLICATION_ERROR (-20000,'Employees are limited to a max of two departments.');
 17     END IF;
 18       END IF;
 19     END;
 20     /

Trigger created.

SQL>
SQL>     INSERT INTO employee (emp_id,emp_nameVALUES (401,'Harvey Wallbanger');

row created.

SQL>     INSERT INTO employee (emp_id,emp_nameVALUES (402,'Scarlet Tanninger');

row created.

SQL>     INSERT INTO department (dept_id, dept_nameVALUES (401,'Fermentation');

row created.

SQL>     INSERT INTO department (dept_id, dept_nameVALUES (402,'Distillation');

row created.

SQL>     INSERT INTO department (dept_id, dept_nameVALUES (403,'Bottling');

row created.

SQL>     INSERT INTO emp_dept (emp_id, dept_idVALUES (401,401);

row created.

SQL>     INSERT INTO emp_dept (emp_id, dept_idVALUES (401,402);

row created.

SQL>     INSERT INTO emp_dept (emp_id, dept_idVALUES (402,402);

row created.

SQL>     INSERT INTO emp_dept (emp_id, dept_idVALUES (402,403);

row created.

SQL>     INSERT INTO emp_dept (emp_id, dept_idVALUES (401,403);
    INSERT INTO emp_dept (emp_id, dept_idVALUES (401,403)
                *
ERROR at line 1:
ORA-20000: Employees are limited to a max of two
departments.
ORA-06512: at "JAVA2S.ONLY_TWO_DEPARTMENTS", line
13
ORA-04088: error during execution of trigger
'JAVA2S.ONLY_TWO_DEPARTMENTS'


SQL>     UPDATE emp_dept SET dept_id = 403 WHERE emp_id = 401 AND dept_id = 402;
    UPDATE emp_dept SET dept_id = 403 WHERE emp_id = 401 AND dept_id = 402
           *
ERROR at line 1:
ORA-04091: table JAVA2S.EMP_DEPT is mutating,
trigger/function may not see it
ORA-06512: at "JAVA2S.ONLY_TWO_DEPARTMENTS", line
5
ORA-04088: error during execution of trigger
'JAVA2S.ONLY_TWO_DEPARTMENTS'


SQL>
SQL> drop table employee cascade constraints;

Table dropped.

SQL> drop table department cascade constraints;

Table dropped.

SQL> drop table emp_dept cascade constraints;

Table dropped.

SQL> --

 
Related examples in the same category
1. A trigger restricting updates
2. Define trigger to force all department names to uppercase
3. Trigger to check inserting value
4. Force all department names to uppercase in a trigger
5. A Trigger to check the available room
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.