Can somebody explain difference between "before" and "after" trigger in oracle 10g with an example ?
相关问题
- SQL join to get the cartesian product of 2 columns
- sql execution latency when assign to a variable
- Difference between Types.INTEGER and Types.NULL in
- php PDO::FETCH_ASSOC doesnt detect select after ba
- Bulk update SQL Server C#
BEFORE TRIGGER are used when the trigger action should determine whether or not the triggering statements should be allowed to complete .by using BEFORE TRIGGERS user can eliminate unnecessary processing of the triggering statement but,AFTER TRIGGERS are used when the triggering statements should completed before executing the trigger action.
I'm not completely sure what you're interested in knowing, so I'll keep this fundamental.
Before Triggers
After Triggers
First, I'll start my answer by defining trigger: a trigger is an stored procedure that is run when a row is added, modified or deleted.
Triggers can run BEFORE the action is taken or AFTER the action is taken.
BEFORE
triggers are usually used when validation needs to take place before accepting the change. They run before any change is made to the database. Let's say you run a database for a bank. You have a tableaccounts
and a tabletransactions
. If a user makes a withdrawal from his account, you would want to make sure that the user has enough credits in his account for his withdrawal. TheBEFORE
trigger will allow to do that and prevent the row from being inserted intransactions
if the balance inaccounts
is not enough.AFTER
triggers are usually used when information needs to be updated in a separate table due to a change. They run after changes have been made to the database (not necessarily committed). Let's go back to our back example. After a successful transaction, you would wantbalance
to be updated in theaccounts
table. AnAFTER
trigger will allow you to do exactly that.