Hi everyone,
I have 2 virtual machines, one that i use at home and the other one that i
use at work, so, in the server i have one publication and for each client i
have the same subscription, but every time i go out from home to work, i
have to stop postgresql service in order to use subscription
Hi everyone,
Im just testing/learning how subscriptions and publications work, then this
is what i have done until now:
Server A :
create database test_pubsubs;
create table foo(
id_foo serial not null primary key,
foo varchar(20) not null
);
insert into foo values(1,'foo');
insert into foo v