Move all discussions in one node to another

You have to move the threads manually before doing anything, you can do so by going in to the forum, click on the 0 selected threads, then check off select all, then go to the next page (don't worry, xF remembers what threads you selected) and do the same (though this time it should say x selected threads). Once you done that for all pages in the forum, just use the inline mod to move all the threads at once.
 
Run this query on your database:

Code:
UPDATE xf_thread
SET node_id = 5
WHERE node_id = 2

5 being the destination, 2 being the source.

Then rebuild your forum info:

Admin CP -> Tools -> Rebuild Caches
 
Is this still the only way? I have several dead nodes and I want to move all the messages to the parent node. Why not have an option in the delete node popup to move all messages to the parent node?
 
Top Bottom