If I use the update statement in the update trigger, does this update expression in the update trigger cause the trigger to fire?
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.
RECURSIVE_TRIGGERS
http://technet.microsoft.com/en-us/library/ms190946.aspx
Please see this blog post for more information on a recursive trigger: http://blog.sqlauthority.com/2007/05/18/sql-server-2005-understanding-trigger-recursion-and-nesting-with-examples /
By default, the trigger does not fire.
Source: https://habr.com/ru/post/1500698/More articles:Why do comparison operators in C return 1 if the expression evaluates to true rather than -1? - cLua 4.0 undeclared variables and conditional statements - luaWhy are [1..5] returning to Rascal [1,2,3,4]? - rascalrecognition of the end of a video in vimeo embed player in iOS - iosOpenCL - GPU Vector Mathematics (Parallelism Learning Level) - parallel-processingList for object [] - c #Delete localStorage when closing javascript browser - javascriptHow to get an action that tries to remove or remove an application from Android - androidFirefox transition when adding a class - javascriptDoctrine and Symfony2: WHERE a.title LIKE $ array - sqlAll Articles