Apparently SQL Server took away the "BEFORE DELETE" trigger and replaced it with an "INSTEAD OF".
I also have an "AFTER DELETE" that writes out a log record that now doesn't fire because of the "INSTEAD OF" I had to add! As a result, the original record I wish to delete is still there.
So, how do you go back and do the "AFTER DELETE" trigger when the "INSTEAD OF" is done?
(the reason for the "INSTEAD OF" is I have to delete records that have FK columns pointing to the record I wish to delete, so I have to remove them first)
Thanks in advance,
Jerry Scannell
I also have an "AFTER DELETE" that writes out a log record that now doesn't fire because of the "INSTEAD OF" I had to add! As a result, the original record I wish to delete is still there.
So, how do you go back and do the "AFTER DELETE" trigger when the "INSTEAD OF" is done?
(the reason for the "INSTEAD OF" is I have to delete records that have FK columns pointing to the record I wish to delete, so I have to remove them first)
Thanks in advance,
Jerry Scannell