In SQL Server 2000, by default, does a DELETE query cause a table’s UPDATE trigger to be executed?
I know I can define a trigger that will be executed on both DELETE and UPDATE, but I thought I would verify that this is in fact required first.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
A DELETE does not fire UPDATE triggers. If you have a trigger defined to be fired on DELETE and also on UPDATE then it will be executed on a DELETE but that’s because it’s also a DELETE trigger.