Two table synchronization triggers in Oracle

Source: Internet
Author: User

/* Create Table */
Create table A_ybl (

Y INTEGER not null,

B VARCHAR (30) not null,

L VARCHAR (20) not null

);
/* Create A backup table for table */

Create table A_ybl2 (

Y INTEGER not null,

B VARCHAR (30) not null,

L VARCHAR (20) not null

);
Create or replace trigger test
After insert or update or delete on A_ybl for each row

Declare
Error_exception exception,
Errno integer,
Errmsg char (20 ),
Dummy integer,
Found boolean;

Begin
If inserting then
Insert into A_ybl2 values (: NEW. y,: NEW. B,: NEW. l );
Elsif updating then
Update A_ybl2 set y =: NEW. y,
B =: NEW. B,
L =: NEW. l
Where id: =: OLD. y;
Elsif deleting then
Delete from A_ybl2 where y =: old. id;
End if;
 
Exception
 
When error_exception then
Raise_application_error (errno, errmsg );
End;

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.