will_johnson
06/24/2022, 6:45 PMtaylor
06/24/2022, 6:57 PMwill_johnson
06/24/2022, 7:02 PMwill_johnson
06/24/2022, 7:08 PMjuan_luis_cano_rodriguez
06/25/2022, 6:24 AMilkka_peltola
06/27/2022, 5:39 AMschemas
and under that tables
. Also have a look at Replication Methods.
I'm assuming that you would like things that have changed to be replicated over. Looks like the LOG_BASED
replication method is what you want. You will need to enable logs in your postgres so that rows that have been added or modified are transferred.
If you indeed have a reliable updated timestamp or some other incrementing field in your table, you could also look at INCREMENTAL
replication method, which doesn't require logs.
Hope that helps.juan_luis_cano_rodriguez
06/27/2022, 9:21 AMilkka_peltola
06/27/2022, 9:44 AM