Copying Some from a PostgreSQL Server to Another
Posted
by whollychao
on Stack Overflow
See other posts from Stack Overflow
or by whollychao
Published on 2009-09-14T15:31:05Z
Indexed on
2010/05/02
9:07 UTC
Read the original article
Hit count: 283
sql
|postgresql
I am in need of an application that can periodically transmit select rows from a PostgreSQL database across a network to a second PostgreSQL server. Typically these will be the most recent row added, pulled and transmitted every 10-30 seconds.
The primary servers run in a MS Windows environment with a high-latency, and occasionally intermittent, network connection. Therefore, any application would have to be tolerant of this and ideally automatically reconnect / resend data that could not be transmitted. Due to the environment and the requirements, a full-blown replication package would be unnecessary.
I appreciate any help anyone has with this problem.
© Stack Overflow or respective owner