vote up 0 vote down star

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 an 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 an Firebird Database. This Data needs to be new structured and migrated to an new MySQL Database.

flag

I see no reason for the ms-access tag. – David W. Fenton Oct 17 at 1:46
cause i have to use MS-Access...well thats what my colleagues say – bastianneu Oct 18 at 9:18

4 Answers

vote up 1 vote down check

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.

link|flag
export the DDL : it's why I advice to use Database Workbench. For firebird, I prefer IBExpert but Database Workbench can be used for Firebird and MySQL – Hugues Van Landeghem Oct 18 at 21:24
+1000:works perfectly for me. Thank you! – bastianneu Oct 19 at 8:10
vote up 1 vote down

You can use a tool like database workbench.

Why you want to migrate to MySQL ?

link|flag
Database Workbench is a really nice tool. Thank you! I want to use MySQL cause it is a simple small solution for such a small Access Database. – bastianneu Oct 19 at 8:09
In my opinion Firebird is better than MySQL for my needs. I don't know exactly yours but you can take a look here : itexto.net/devkico/?p=398 – Hugues Van Landeghem Oct 19 at 8:51
vote up 0 vote down

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

link|flag
vote up 2 vote down

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

link|flag
but i want to modify the field names etc...can i achieve this with an csv export? – bastianneu Oct 16 at 15:46
Yes. csv import relies only on order. – Daren Schwenke Oct 16 at 15:50
Take a look at dev.mysql.com/doc/refman/… – Daren Schwenke Oct 16 at 15:52

Your Answer

Get an OpenID
or

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