I have a problem in Fast Refresh replication. I created a replication on two Windows 2000 servers with Oracle 9i Release 9.0.1.1.1 and I can not make the updates automatically occur in the interval defined in the Next parameter. Simply does not update. I can not use manual update in this case.
I made the following steps in each of the servers.
remote server -------
Create table teste (a number primary key, b varchar2(20));
insert into teste (a, b) values (1, 'weqwuqeui');
create materialized view log on teste with primary key;
create materialized view admin.teste_mv
build immediate
refresh fast start with sysdate next sysdate + 1/1440
with primary key as
select * from teste@servidor1;
insert into teste (a, b) values (2, 'qwerty');
I know it must be a stupidly simple thing but is not updating. If anyone could give me a tip of what is wrong would appreciate a lot.
A hug