i created materialized view log on my master server as following...

create materialized view log on usermaster;

..... now on the replication server(the server where i wish to replicate my data) i created a materialized view as....

create materialized view usermaster refresh force start with sysdate next sysdate+1/(24*60) as (select * from usermaster@srv)

where srv is the name of the database...