There are two databases, the local one (damn MYOB data file, can only read locally via JDBC-ODBC connection), the other one is mysql which runs on another server.
what is the best way to synchronize the two databases?
is it possible to execute "insert into _mysql.table1 select * from _myob.table1" or do something similar?
I hate to select from, then populate the result insert into another.
Thanks.