stefanlennerbrant
Programmer
I unintentionally deleted data from a table with
delete from TABLE
This was not detected until much later (more than a month ago), and we now have no backup tape that includes the data, just a bunch of empty tables...
However, there has not been much writing in the database (not in any table) since then, so perhaps there is a way to recover at least some of the data?
Does anybody have any suggestion on how to recover deleted data from the MDF file. I suppose the log file has been truncated several times since (because of the backups)
No tables have been dropped. The data was just deleted with something like
delete from EMPLOYEES
delete from ASSSIGNMENTS
insert into EMPLOYES(name) values('John Smith')
Thus, all tables were cleared and then one value was inserted into one of the tables
Thanks,
/Stefan Lennerbrant
delete from TABLE
This was not detected until much later (more than a month ago), and we now have no backup tape that includes the data, just a bunch of empty tables...
However, there has not been much writing in the database (not in any table) since then, so perhaps there is a way to recover at least some of the data?
Does anybody have any suggestion on how to recover deleted data from the MDF file. I suppose the log file has been truncated several times since (because of the backups)
No tables have been dropped. The data was just deleted with something like
delete from EMPLOYEES
delete from ASSSIGNMENTS
insert into EMPLOYES(name) values('John Smith')
Thus, all tables were cleared and then one value was inserted into one of the tables
Thanks,
/Stefan Lennerbrant