SQL Server Triggers - grouping by transactions

后端 未结 3 1530
南方客
南方客 2021-01-15 02:33

At work we have just started building an auditing framework for our database (i.e. to log what data has changed when it is created or updated).

We\'d quite like to i

3条回答
  •  滥情空心
    2021-01-15 03:18

    Outside the scope of the question but something to think about when designing your audit solution. If you intend to audit records that include bulk inserts, make sure your bulk inserts all include the FIRE_TRIGGERS keywords. You also need to ensure that the triggers themselves properly handle multiple row inserts (and not, not, not through a cursor!).

提交回复
热议问题