Is the update instruction updated in the update trigger, does the trigger fire?

If I use the update statement in the update trigger, does this update expression in the update trigger cause the trigger to fire?

+4
source share
3 answers

Make sure that your database property for RECURSIVE_TRIGGERS set to "off" (which is the default by default) so that it cannot be started recursively.

http://technet.microsoft.com/en-us/library/ms190946.aspx

+2
source
+1
source

By default, the trigger does not fire.

+1
source

Source: https://habr.com/ru/post/1500698/


All Articles