I use DB2 Express-C. I have ON INSERT trigger on a table, where I insert the new row into another table. Is there a way not to insert the new row into the table on which the trigger is defined?
Any help is appreciated, thank you
|
|
Take a look at create trigger and the INSTEAD OF option:
|
|||
|
|
|
Typically something like this can be done by evaluating whether a special register (e.g.,
If you are on DB2 9.7 or later, you could also consider defining a variable and using that variable as a control of whether or not the trigger will perform its action.
Then you can check the value of this variable in the trigger. Unless an application has explicitly set the variable to a predetermined value (-9999 in the example below), the trigger will fire:
|
|||
|
|