XF 1.2 SQL Encoding change

Moshe1010

Well-known member
Just curious. When importing form a DB that was Windows-1255 (vBulletin 4) to XF 1.2, would the import change the encoding of the database to UTF8 by default? If yes, how come my database hasn't doubled itself since every non-unicode character takes more space when the DB is in UTF8?
 
It is converted to utf-8. It's more complex than to simply say whether it would double. The data will certainly be a different size.
 
It is converted to utf-8. It's more complex than to simply say whether it would double. The data will certainly be a different size.
My concern is that my SQL was 884MB before the import and 819MB after the import. Post table is almost the same on both platforms, so this is why I'm confused. No search index tables on both SQLs
 
Well, there are way to many variables and differences to make a judgement based solely on the DB size.

If all the posts are there, then that's really the only judgement that can be made.
 
My concern is that my SQL was 884MB before the import and 819MB after the import. Post table is almost the same on both platforms, so this is why I'm confused. No search index tables on both SQLs
I have not done any imports myself but is it possible that some of the data from your old vb is not imported or used or whatever...like some custom fields or something
 
I have not done any imports myself but is it possible that some of the data from your old vb is not imported or used or whatever...like some custom fields or something
I'm looking at a single table -xf_posts, which stayed almost the same. For non unicode characters, it should have been greater by 50-100% (at least from my experience when I tried to convert it before to utf8 in a testing environment).

So I guess it's XF magic :)
 
OK, after investigating here is the deal:
Since I've upgraded from vB3 to vB4 it created a duplicated table called title2 and title 3. It looks like it was a bug in the software during an upgrade (not surprised) and I could have deleted one of these tables.
What's more funny/interesting is vB's post index table. It's almost 3 times more (in terms of size) than the data itself.
XF just made it right; currently, index post is about 50MB and the data has doubled itself as expected due to different encoding.
At the end, it came to the same DB size.

I can sleep quietly now :)
 
Top Bottom