I need to view the transaction logs of a database on sql server 2008 in order to find a delete transaction and hopefully roll it back.

Unfortunately I have no clue where to start, and I'm finding it difficult to determine which are good articles on google.

Can anyone point me in the right direction?

Thanks

link|improve this question

feedback

1 Answer

up vote 3 down vote accepted

You could use the undocumented

DBCC LOG(databasename, typeofoutput)

where typeofoutput:

0: Return only the minimum of information for each operation -- the operation, its context and the transaction ID. (Default)
1: As 0, but also retrieve any flags and the log record length.
2: As 1, but also retrieve the object name, index name, page ID and slot ID.
3: Full informational dump of each operation.
4: As 3 but includes a hex dump of the current transaction log row.

e.g. DBCC LOG(database, 1)

You could also try fn_dblog.

EDIT:

For rolling back a transaction using the transaction log i would take a look at this post on SO.

Rollback transaction using transaction log

link|improve this answer
Hi @kevchadders, I will try that. Thanks. to clarify, is it the last column that is the most recent? – 109221793 Dec 22 '10 at 8:52
Yes. run DBCC LOG(database, 1) and you should see the TransactionID (4th column) imcrement up in hex – kevchadders Dec 22 '10 at 8:57
feedback

Your Answer

 
or
required, but never shown

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