I am facing a major issue in a production environment where i had introduced a materialized view with a view log in order to refresh on commit to the master table. I tested this out with sql developer and it works perfectly.
But when the underlying table is updated using my application which is using iBatis to commit to the table, the materialized view is not getting updated with the new values.
Can anyone tell me what might be the issue here?
Appreciate your help in this regard
INSERT
statement, but iBatis is using a combination ofINSERT
andUPDATE
. REFRESH_FAST_AFTER_INSERT = Y, but REFRESH_FAST_AFTER_ANY_DML = N. – Jon Heller