SQL Server – after insert trigger – update another column in the same table
It depends on the recursion level for triggers currently set on the DB. If you do this: SP_CONFIGURE ‘nested_triggers’,0 GO RECONFIGURE GO Or this: ALTER DATABASE db_name SET RECURSIVE_TRIGGERS OFF That trigger above won’t be called again, and you would be safe (unless you get into some kind of deadlock; that could be possible but … Read more