How do you find the modification history for a certain table / row in SQL server 2000? Thanks.

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

you need to get a product that can read the transaction log like SQL Log Rescue or Apex SQL Log

link|improve this answer
Is there anyway to examine the transaction log without 3rd party tools? – Stan Jun 9 '10 at 23:07
No, not in a readable format – SQLMenace Jun 9 '10 at 23:28
What about in transaction log in SQL server 2005/2008? Do they need 3rd party tool to examine? – Stan Jun 10 '10 at 7:31
Yes. Basically, it not a part that people normally access. If you want to track changes, put in triggers that write to a change history table, or use the 2008 change services. – TomTom Nov 2 '10 at 20:52
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.