Link to home
Start Free TrialLog in
Avatar of CarlosScheidecker
CarlosScheidecker

asked on

MySQL 3.x to 5.x Migration

I have a legacy MySQL 3.x database with the MyISAM engine and I need to export that to a MySQL 5.x server.

Is it possible to migrate from MyISAM to Innodb?

Also, what is the best approach for that? MySQLAdmin allows you to create a backup file whichI think it is like a SQL dump with a bunch of SQL statements.

If I were to migrate to InnoDB I would have to change its schema file.

What is the best, fastest, easiest and safest way to accomplish this task?

Thanks.
ASKER CERTIFIED SOLUTION
Avatar of Guy Hengel [angelIII / a3]
Guy Hengel [angelIII / a3]
Flag of Luxembourg image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of CarlosScheidecker
CarlosScheidecker

ASKER

That is great. I ve used MySQLAdmin that create the backup (old data dump). Then I have restored it to MySQL 5 and used Angellll's suggestion. Worked like a charm.
To the point.