Mysql – Informix to MySQL Conversion

informixMySQL

We have a old Informix Database at my place of employment and are looking for a solid solution for migrating all of the data from Informix to MySQL.

Does anyone have knowledge of a proven solution for this migration?

Best Answer

Is the schema too large or too complex to edit manually? Informix and MySQL syntax is very similar and you should be able to clean the sql statements just using some sed scripts.

There are many tools available and a MySQL resource discussing various options can be found here, but I would be inclined to just dump the dbschema, try and load it into MySQL and fix the bits that break.

Related Topic