PDA

View Full Version : How do you recover a deleted thread?


bluestartech
01-15-2010, 05:08 AM
Need help please!

If you did a hard delete on a thread by accident and wanted to restore it from database, which mysql database table should be restored? thanks

Lynne
01-15-2010, 02:33 PM
Restoring a thread - http://www.vbulletin.com/forum/showthread.php?326281-Recreating-a-deleted-thread-number&p=1845274&viewfull=1#post1845274:

Try this, restore the backup to a different database and using the operations tab in phpmyadmin, rename the thread and post tables to something with a number on the end (post7 and thread7) then copy those 2 tables to the live database.
Run the following queries changing 777 to the threadid of the deleted thread.
Code:

INSERT INTO thread
(SELECT *
FROM thread7
WHERE threadid = 777)

Code:

INSERT INTO post
(SELECT *
FROM post7
WHERE threadid = 777)