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, Manoj.
Asked: May 27, 2020 - 1:27 am UTC
Last updated: May 27, 2020 - 1:00 pm UTC
Version: 11.2.0.4.0
Viewed 1000+ times
create table t ( c1 int primary key , c2 int ) partition by range ( c1 ) interval ( 1 ) ( partition p1 values less than ( 2 ) ); create materialized view log on t with rowid, primary key ( c2 ) including new values; insert into t with rws as ( select level x from dual connect by level <= 10 ) select x, x from rws; commit; select count(*) from mlog$_t; COUNT(*) 10 alter table t truncate partition p1; select count(*) from mlog$_t; COUNT(*) 0
New to good database design? Check out Chris Saxon's full fundamentals class.