i am already doing this
it is easy
the forumid and topicid and postid
should not intersect you have to make iterations in 1 of the boards
how to make iterations ? example is below i am not sure the table names are correct you have to confirm it.
UPDATE forum
SET forumid=forumid+1289;
UPDATE thread
SET threadid=threadid+450000;
UPDATE thread
SET forumid=forumid+1289;
UPDATE post
SET postid=postid+2400000;
UPDATE post
SET threadid=threadid+450000;
you will have to create new forums matching forum id on your 2nd forum which you are closeing
mysqldump -u dbuser -p[pwd] --no-create-db --no-create-info database2nd > database_backup.sql
mysql -u dbuser -p[pwd] database1st < database_backup.sql