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, Andrew.
Asked: July 13, 2020 - 2:51 pm UTC
Last updated: July 16, 2020 - 1:04 am UTC
Version: Oracle 19c
Viewed 1000+ times
SQL> create table t1 as select owner, count(*) x from t group by owner; Table created. SQL> SQL> create materialized view t1 2 on prebuilt table 3 never refresh 4 as select owner, count(*) x from t group by owner; Materialized view created.
SQL> delete from t1 where rownum <= 10; 10 rows deleted.
Andrew Bay, July 14, 2020 - 11:35 am UTC
New to good database design? Check out Chris Saxon's full fundamentals class.