vote up 0 vote down star

Does anyone know of any tools that can help in recovering dropped tables and stored procedures ?

There was no backup taken and this DB was accidentally synced up with another DB and the new tables created in this DB were dropped.

thanks

flag

80% accept rate
2  
en.wikipedia.org/wiki/Prayer – cakeforcerberus Aug 20 at 15:32
It probably isn't that simple. When you delete something, you usually give the resources it held back to the OS, including disk space (which in this case means giving it back to the filesystem through the OS). I am not a kernel programmer, but I doubt that most kernels will allow a safe "undelete" feature, as there is no guarantee that the resource hasn't been used already since your delete. What i'm saying is that even if it works, I would worry about data integrity. Others with experience in this area should feel free to educate me on the matter. – San Jacinto Nov 16 at 14:33

2 Answers

vote up 2 vote down check

I googled "sql server restore dropped table" and came up with a helpful forum answer.

http://www.eggheadcafe.com/community/aspnet/13/11519/are-you-sure-you-dont-ha.aspx

"When a database is created in SQL Server, it is set to Full Back Up by default. So, your table should be available by restoring the transaction backup. Try going to the "restore database" options by right clicking on the database name in Enterprise Manager and selecting All Tasks."

I do question if that would restore the table or just the data, though.

There is some fairly low cost software by RedGate called "SQL Log Rescue" that is supposed to help with this. Check out this SQL Server Central article: http://www.sqlservercentral.com/articles/Product+Reviews/sqlrescuereview/2086/

EDIT: The RedGate software does require a full backup, so that won't help. I just caught that.

But perhaps the transaction log will help you in recovering the table structures, even if it can't actually restore the table itself.

link|flag
really good points unfortunately as stated earlier he is supposed to have no backup ! still voting up for the detailled research gj ! – Lil'Monkey Aug 20 at 16:35
thanks. :) Yeah - the RedGate software won't work since it requires a backup. However, if any transactions had been performed in the DB, there's a good possibility that the transaction logs still contain data that would help recover the table structure. If something isn't being backed up, you can usually assume that the defaults are being used when things are created, so the transaction log would have been logging. – Elizabeth Aug 20 at 17:16
vote up 0 vote down

i really dont think u can recover the table or its content if you had no backup ... anyway i wish i could be more helpful

link|flag
1  
ouch. i agree with this comment. – djangofan Aug 20 at 15:42

Your Answer

Get an OpenID
or

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