Mysql – How to do Mysql migration from 5.0 (320bit windows) to 5.6 (64 bit windows)

migrationMySQLmysql-5

I want migrate My Mysql 5.0 windows 32 bit to Mysql 5.6 Windows 64 bit?

Please suggest me the best way to do migration, i have around 10gb of data present in Mysql 5.0.

Best Answer

You use mysqldump.

Step 1. Dump your original 32 bit database. mysqldump my32bitdb [options...] > mydb.sql

Step 2. Copy the file mydb.sql to your new server

Step 3. Load the 32 bit database mysql -u root -p my64bitdb < C:\path\to\mydb.sql

With 10GB of data, it shouldn't take much more than ~ 1hr.

For reference, see here and here.