Audit trail - SQL Server -
is advisable use triggers in sql server implement audit trail on updated tables contains large data? there performance impacts? if not recommended, options implementing audit trail?
you might want investigate change data capture. native sql server functionality audit logging.
https://msdn.microsoft.com/en-us/library/cc645937.aspx
cdc add overhead, though-out overhead. triggers can messy , should avoided when possible.
Comments
Post a Comment