Need to roll back a delete query, so I'm sifting through the transaction logs without really knowing what the meanings of most of the headers are.

TO ME, it looks like Current LSN, and possibly Transaction ID MIGHT be date or time but in a different format?

The Current LSN looks like this : 00000e46:00000a4d:0002 The Transaction ID looks like this: 0000:0000da25

Would I be wrong in thinking this? If so, does anyone know how I would be able to view the time/date in sql server transaction logs using ONLY SQL Server.

link|improve this question

what version of sql server? – Mitch Wheat Dec 22 '10 at 11:53
feedback

2 Answers

up vote 2 down vote accepted

You need to use ::fn_dblog

Now, I haven't tried using it myself but some usage is described here

link|improve this answer
+1. Paul Randall's post looks promising... – Mitch Wheat Dec 22 '10 at 11:56
@Mitch Wheat: always the first place to look for in depth stuff like this... – gbn Dec 22 '10 at 11:57
Yep: after all he was a dev on the storage engine team.... – Mitch Wheat Dec 22 '10 at 11:58
feedback

If you want an easy approach, and don't mind paying, there is a commercial tool supporting SQL Server versions 2000, 2005, 2008, 2008 R2: ApexSQL Log

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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