Asynchronous Triggers in SQL Server 2005/2008

后端 未结 10 1015
-上瘾入骨i
-上瘾入骨i 2020-12-08 09:51

I have triggers that manipulate and insert a lot of data into a Change tracking table for audit purposes on every insert, update and delete.

This t

10条回答
  •  春和景丽
    2020-12-08 10:26

    From sql server 2008 you can use CDC feature for automatically logging changes, which is purely asynchronous. Find more details in here

提交回复
热议问题