Suppose I have a table TABLE with two columns COL_1 and COL_2.
I have a materialized view that simply reads TABLE.COL_1, and is set for: REFRESH FAST ON COMMIT.
If I update TABLE.COL_2, does the materialized view refresh?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Yes, it appears that updating COL_2 also refreshes the view.
Updating COL_2 uses more resources than a comparable update on a similar table without a materialized view. And updating COL_2 will update the row timestamp (ORA_ROWSCN) of the materialized view.