Reputation: 5432
For example, a log that shows when which value was changed from what to what in which table, row and field?
Upvotes: 0
Views: 281
Reputation: 1499
Apart from investigating a particular issue, its NOT recommended to use Transaction log for this purpose. There are many issues one in particular is reading from it when there are concurrent transactions which can cause access violation errors.
As others have pointed out, roll out your own or use Change Data Capture (CDC) or Change Tracking (CT) if you are using SQL Server 2008 & above.
Upvotes: 4
Reputation: 16677
you are free to roll your own.
perhaps build a log table, and add triggers to record relevant transactions.
Upvotes: 1