XF 1.5 "Reimporting" thread titles from vBulletin

sapph

Member
Ok, so I had a vB4 forum with lots of long thread titles on it. When I imported they got truncated to 100 characters which I only realized afterwards.

I've since increased the title length limit to 150 characters, and if possible I'd like to reimport those old thread titles into Xenforo. I did preserve content IDs when importing.

I'm not sure what the easiest way to do this is. I was thinking just grabbing the thread IDs and titles from the vB copy and truncating the remaining titles at the new 150 character limit. Then insert those updated titles into the corresponding IDs in the XenForo database.

Has anyone done something like this? I'm not sure of any pitfalls I might be facing with that approach.
 
Some straight SQL should work for this.

Rich (BB code):
UPDATE xfdb.xf_thread AS xt
SET xt.title = (
	SELECT LEFT(vt.title, 150)
	FROM vbdb.thread AS vt
	WHERE vt.threadid = xt.thread_id
);

Fill in the db names. And backup first.
 
Top Bottom