I created a fast refresh MV in a remote db by using a syntax like follows:
CREATE MATERIALIZED VIEW MV_TAB1
REFRESH FAST WITH PRIMARY KEY
START WITH SYSDATE NEXT SYSDATE+(5/1440) /* 5 MINUTES */
FOR UPDATE AS
SELECT * FROM TAB1@SOURCE_DB;
Now in the remote db where the MV_TAB1
was created, is it possible to update the MV_TAB1
and keep the update even after the refresh? My testing shows that after each refresh, my update on MV_TAB1
is gone. Is there any way to keep this local update? If yes,how?
Thanks, Amos