What is the best way to synchronize data between MS Access and MySQL?

前端 未结 5 1359
面向向阳花
面向向阳花 2020-12-03 23:18

I have an access database on a windows machine, which I must import into mysql on a linux webserver. At the moment the access dabatbase table is exported as a text file, aut

5条回答
  •  一向
    一向 (楼主)
    2020-12-04 00:06

    If you do want incremental updates, the way to do it is writing a script that does connect to both databases (through ODBC at least on the Access side) and compare all tables. The advantage of copying the whole thing is that you are sure not to forget anything, downside may be the size and the fact that the mysql will not be available during the reload.

提交回复
热议问题