How can I fire a trigger BEFORE a delete in T-SQL 2005? The FOR actually fires AFTER an event and they seems no BEFORE argument in the TRIGGER function. The INSTEAD OF is not what I want. I need to fire before I delete a record. Any ideas?
|
|
You can use the INSTEAD OF option, just explicitly delete the rows at the end. For example:
This assumed a primary key made up of columns PK_1 and PK_2. |
||
|
|
|
You can't. But you can perform a rollback in an AFTER DELETE trigger. |
||
|
|
|
|
You can't. What you can do is check the DELETE table and undo the delete if you need to do so. Here's the Sequence of events:
|
||
|
|
|
|
Instead of triggers happen before the delete so why do you say you don't want to use that? What exactly are you trying to do, knowing more about your situation would help us give you a better answer. |
||
|
|
