我正在尝试 SymmetricDS 并且在这方面非常新。我有两个问题:
主客户端节点 1 (location_id = 001) 客户端节点 2 (location_id = 002)
我有的表结构: tbl_customer (customer_id, first_name, last_name) tbl_customer_details (customer_id, location_id, details)
1) 当主节点同步到客户端节点时,如何同步 tbl_customer 数据在某个 location_id 中?正如您从我们的结构中看到的那样,在 SQL 中,我们必须将 tbl_customer 连接到 customer_id 上的 tbl_customer_details where location_id = X 我如何告诉 SymmetricDS 相应地同步以及如何使用位置 ID 指定每个客户端节点?
2)是否可以从客户端节点上的视图同步到主节点上的表,或者只能从表到表?