Local Firebird db replication/sync to online db

后端 未结 2 1098
梦如初夏
梦如初夏 2021-01-24 21:27

I am looking for a tip how to synchronize data from a local firebird database into online db? Few comments:

  1. On a local machine I use sales software which keeps dat
2条回答
  •  夕颜
    夕颜 (楼主)
    2021-01-24 22:01

    • Put a scheduled job that will invoke a simple data pump / replication script.
    • From the script, connect to the source sales db, retrieve the joined data added from last replication and insert them into the "online" database.
    • You may keep also Firebird as online DB as it works great with PHP.

提交回复
热议问题