Merging 2 XF Databases

m1ne

Well-known member
I'm hoping to merge 2 XenForo databases, and here is how.

Code:
INSERT INTO DATABASE_1 SELECT * FROM DATABASE_2.xf_post;

Is this a viable option? I can run this for every table and recount everything after, right?
 
I'm hoping to merge 2 XenForo databases, and here is how.

Code:
INSERT INTO DATABASE_1 SELECT * FROM DATABASE_2.xf_post;

Is this a viable option? I can run this for every table and recount everything after, right?

No, because IDs will clash.

There is currently no XenForo to XenForo importer yet.
 
Top Bottom