How to migrate an old Database into a new Database using Microsoft Access

1.1k views Asked by At

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.

4

There are 4 answers

1
dkretz On BEST ANSWER

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.

2
Hugues Van Landeghem On

You can use a tool like database workbench.

Why you want to migrate to MySQL ?

2
Daren Schwenke On

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

0
longneck On

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