Change materialized view to commit

I have a materialized view that I would like to change to commit (on demand) with a quick update.

However i keep getting

ora-32337 cannot alter materialized view with pending changes refresh on commit

even immediately after the update (and knowing that no changes have been made).

What could be the reason for this? MV uses external connections, maybe this is a problem? (MV journal is available for all tables)

+5
source share
1 answer

As @eaolson said, you should just drop the materialized view and recreate it as an update on commit. This is the only way.

+1
source

All Articles