Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have tried some tools (such as mysql migration toolkit and bullzip's Access To MySQL utility.) that convert a ms access database to mysql which all successfully create the database, tables and insert the data.

What they do not appear to do is recreate the relationships (constaints) from the original ms access database into mysql.

Are there any utilities that can recreate the database, tables and data with the correct relationships? Thanks

share|improve this question

3 Answers

up vote 2 down vote accepted

Yes, there are tools which do that for you:

I would always take care using tools like these for conversions, especially relationships - you never know if they forget some relationship or convert fieldtypes wrongly. So you better make sure to manually check everything afterwards.

share|improve this answer
Thank you very much – badass Oct 15 '10 at 11:17
+1 for the advice to manually check everything afterwards. Even Microsoft can't write a tool to do a 100% conversion of Jet/ACE to SQL Server, as I recently found out. For instance, several validation rules did not upsize properly because the SSMA did not understand them. – David-W-Fenton Oct 16 '10 at 17:04
1  
FYI: The product at softgalaxy.net/access-mysql/index.html does not list Access 2010 as supported and while the product at convert-in.com/acc2sql.htm lists Access 2010 support I have not had a success with it yet. – jerrygarciuh Sep 8 '11 at 15:08

Open your database, then export your all tables separated with commas to txt files, then rebuild manually your relationships, that's the proper way

share|improve this answer

I write a VBA code to identify relationships:

http://en.latindevelopers.com/ivancp/2012/ms-access-to-mysql-with-relationships/

You can run the generated sql code on MySQL after use free tools.

Regards.

share|improve this answer
killer! totally worked 100%. – Ana Ban Apr 12 '12 at 3:40

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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