我在我的 SQL Server 表中创建了以下列:
Log_id
Old_value
New_value
Module [The module for the transaction]
Reference_id [unique id of the record from respective tbl to associate with transaction history]
Transaction [The type of transaction. Can include, INSERT, UPDATE or DELETE]
Transaction_status [Indicates SUCCESS or FAILURE]
Stack_trace [The detailed stack trace of the error]
Modified_on
Modified_by
每当发生插入、更新或删除时,将相关数据插入上述审计表的最佳可能和最有效的方法是什么。
请指教。谢谢。