Your're right, I deleted the value and left the column. But yes, the record isin the table. I've also tried all possibile combinations without success. In the end I solved with a workaround: I created a view in the target database with a name and PK that corresponds to the source. This works. I'd still be curious how to do it using the transformations.
I'm new to SymmetricDS and struggling with a quite simple configuration: insert into sym_node_group (node_group_id) values ('A'); insert into sym_node_group (node_group_id) values ('B'); insert into sym_node_group_link (source_node_group_id, target_node_group_id, data_event_action) values ('A', 'B', 'P'); insert into sym_node_group_link (source_node_group_id, target_node_group_id, data_event_action) values ('B', 'A', 'W'); insert into sym_channel (channel_id, processing_order) values ('C', 1); In...