Mysql – How to move from MySQL 5.0 to 5.5

MySQL

I'm currently on Windows 2003 using MySQL 5.0.54a and I'm moving to Linux which has MySQL 5.5.24.

Is this a simple exercise of using mysqldump to export the data from 5.0.54a and then import it into 5.5.24?

Or should I go through the upgrade steps, to bring in my data into a 5.1 instance before bringing it to 5.5.24?

Best Answer

Mysql says it's better to dump, then import into 5.1, then dump again, and finally import into 5.5.

Related Topic