Reputation: 23
I have one table tab1 in database1 on which I have created materialized view log. Now my requirement is to create one materialized view in database2 with real time data such that as soon as the data is committed in my tab1, it should get reflected in my mview. For this I have tried to create mview in database2 with 'refresh fast on commit' option but it is giving the below error: ORA-12054: cannot set the ON COMMIT refresh attribute for the materialized view
Q1.) Is it not possible at all to create mview in remote database with on commit option? Q2.) If not then why? If yes, the how? Q3.) What would happen when db link is down?
Upvotes: 0
Views: 1211
Reputation: 231671
on commit
materialized view that references remote objects. That's one of the documented restrictions.Upvotes: 3