Asynchronous Triggers in SQL Server 2005/2008

后端 未结 10 1017
-上瘾入骨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:13

    I wonder if you could tag a record for the change tracking by inserting into a "too process" table including who did the change etc etc.

    Then another process could come along and copy the rest of the data on a regular basis.

提交回复
热议问题