vote up 0 vote down star

That's about it. I can always just dump it to csv and read it in, but I was hoping to avoid that.

flag

67% accept rate
1  
Why avoid it? It's probably faster than anything else going. MySQL Loader is REALLY fast. What problems do you foresee? – S.Lott Aug 5 at 23:30
"What problems do you foresee?" Taking a long time. But I guess you're right: dump it out, kick off the load, and work on other stuff. – maninwarren Aug 6 at 14:25

2 Answers

vote up 0 vote down

You can use Database Workbench

Cross database development

Use the Schema Compare and Migration Tools to compare testing and deployed databases, migrate existing databases to different database systems.

ps: I don't know why you want to migrate from Interbase to MySQL but you can also take a look to Firebird

link|flag
vote up 1 vote down

Since both Interbase and MySql have ODBC drivers, how about using your favorite development environment to write an app that opens each table in the IB database and copies it into the MySql database? There are various languages and IDE's that support data access using odbc.

This would be nicer than using csv because your code could copy the schema during the process of copying each table.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.