Question

Basically this task is pretty easy when you think about it, but I found no answers in Microsoft Access or MSDN. I have to create a connection to a new Database and query the old one. After validating the old data, everything is written in a new fine Form to the my new Database.

Any Ideas?

Add: Old Database is a Firebird Database. This Data needs to be re-structured and migrated to a new MySQL Database.

Was it helpful?

Solution

You'll need to create the schema separately in MySQL but it's not difficult, there are lots of tutorials, and you can probably find a Firebird tool to export the DDL into a script that will either just work, or be easy to modify.

If you want to use Access in the middle, just attach each of the two external databases from Access (using ODBC or your choice of drivers). You can use the query designer wizards to build a INSERT INTO ... FROM ... type query as you would for any other situation.

OTHER TIPS

If no binary data in your database, I'd suggest just doing a csv export and reimporting.

You can use a tool like database workbench.

Why you want to migrate to MySQL ?

if you can access the firebird database via ODBC, i suggest the mysql migration toolkit.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top