Databases: Migrate data between MS Access DB and MYSQL

梦想的初衷 提交于 2021-02-07 19:33:48

问题


I have 2 databases, one is MS Access DB from an old website, and the other one is MYSQL from the new Joomla+VirtueMart based website. I need to migrate existing products from MS Access to MYSQL.

I thought of putting both on server and writing SQL queries in MYSQL workbench, untill I have a good script for that, but I'm very new to SQL, so I'd rather avoid that.

I there a better way and more efficient for that?


回答1:


You can always export to CSV and import that in MySQL.




回答2:


you can use tools like Database Workbench




回答3:


MySQL provides a free graphical tool called "MySQL Migration toolkit" which automates the migration of Access 2003 MDB files (schema + data) into MySQL. More info at the following link:

http://www.mysql.com/why-mysql/white-papers/a-guide-for-migrating-from-microsoft-access-to-mysql/

(you need to register with Oracle to download the PDF guide).




回答4:


Here's another link using the ODBC technology

https://dev.mysql.com/doc/connector-odbc/en/connector-odbc-examples-tools-with-access-export.html



来源:https://stackoverflow.com/questions/4595506/databases-migrate-data-between-ms-access-db-and-mysql

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!