up vote 0 down vote favorite
share [g+] share [fb]

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

link|improve this question

69% accept rate
2  
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 '09 at 14:33
feedback

2 Answers

up vote 3 down vote accepted

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|improve this answer
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 '09 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. – sql_mommy Aug 20 '09 at 17:16
feedback

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|improve this answer
1  
ouch. i agree with this comment. – djangofan Aug 20 '09 at 15:42
feedback

Your Answer

 
or
required, but never shown

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