views:

26

answers:

1

Hi,

I successfully deleted all records from a table in a database. I have a 18h old full backup + the transaction log. The database backup is FULL, the recovery model is SIMPLE.

Is it possible to "roll back" this delete from the log?

I've tried restoring this database to another name with a time before the delete event, but it keeps returning 0 rows in the table.

+1  A: 

The best you will be able to do is restore to the 18h old full backup. You will not be able to recover the data in the transaction log, because it is simple and not FULL.

Rob Elliott
yes, this is the sad truth. thanks anyway.
balint
I answer this through experience, and feel your pain.
Rob Elliott