Trigger to check inserting value : 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 inserting value
 
SQL> --
SQL>
SQL> set echo on
SQL>
SQL> create table t1 int primary key, y int );

Table created.

SQL> create table t2 (col1 int references t1, col2 int check (col2>0));

Table created.

SQL> create index t2_idx on t2(col2,col1);

Index created.

SQL>
SQL> create trigger t2_trigger before insert or update of col1, col2 on t2 for each row
  2    begin
  3        if :new.col1 < :new.col2 then
  4           raise_application_error(-20001,'Invalid Operation Col1 cannot be less then Col2');
  5        end if;
  6    end;
  7  /

Trigger created.

SQL>
SQL> insert into t2(col1, col2values(1,2);
insert into t2(col1, col2values(1,2)
            *
ERROR at line 1:
ORA-20001: Invalid Operation Col1 cannot be less
then Col2
ORA-06512: at "JAVA2S.T2_TRIGGER", line 3
ORA-04088: error during execution of trigger
'JAVA2S.T2_TRIGGER'


SQL> insert into t2(col1, col2values(2,1);
insert into t2(col1, col2values(2,1)
*
ERROR at line 1:
ORA-02291: integrity constraint
(JAVA2S.SYS_C006395violated - parent key not
found


SQL>
SQL>
SQL> drop table t1 cascade constraints;

Table dropped.

SQL>
SQL> drop table t2 cascade constraints;

Table dropped.

SQL>
SQL> --

 
Related examples in the same category
1. A trigger restricting updates
2. Define trigger to force all department names to uppercase
3. Force all department names to uppercase in a trigger
4. Trigger to check the employee count per department
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.