How do I export / view changes between 3:00am and 8:30am on my database? I have people entering data to the server and during that time, we had an issue where people data were not properly entered into the system.
Thanks!
How do I export / view changes between 3:00am and 8:30am on my database? I have people entering data to the server and during that time, we had an issue where people data were not properly entered into the system.
Thanks!
There is a good discussion of the issue in this forum post. The bottom line is transaction logs are not meant for reviewing what happened but are part of the internal working of SQL and disaster recovery. Most importantly you cannot find out who did what from a transaction log. You need auditing enabled for that.
There is a link to this 3rd party tool that may help.
Not much help in 2011 - but if you are using SQL Server 2000 only, there's a free (and hence very limited support) version by Redgate:
Ajit Ananthram's blog post covers the options (Change Tracking, Change Data Capture, Service Broker with External Activator) in detail.