Connor and Chris will both be at AI World from October 12 to October 17 , the premier Oracle conference of 2025. If you're in Vegas, please come say Hi or pop into our sessions
Thanks for the question.
Asked: January 25, 2023 - 12:28 pm UTC
Last updated: January 25, 2023 - 1:34 pm UTC
Version: 1.5.5
Viewed 1000+ times
create or replace view vw as select count(*) c from hr.employees; create materialized view mv as select * from vw; select * from mv; /* C ---------- 107 */ create or replace view vw as select count(*) c from hr.employees where 1 = 2; exec dbms_mview.refresh ( 'mv' ); select * from mv; /* C ---------- 0 */
New to good database design? Check out Chris Saxon's full fundamentals class.