I have three sites,one site contians the employees table, while the other sites have materialized view of employees table . This is how i created the materialized views on the other sites.
CREATE MATERIALIZED VIEW employeesMV
REFRESH FAST
FOR UPDATE
AS
SELECT * FROM manager.employees@managerlink;
so i just want to know how to update the master table employees after i make changes such as (insert or update) on the materialized view. Thank you in advance.