1.创建原表和物化视图日志SQL> create table t1(id int,name varchar2(30));
Table created.
SQL> alter table t1 add constraint pk_t1 primary key(id) using index;
Table altered.
SQL> create materialized view log on t1 with primary key;
Materialized view log created.SQL> create table t2 as select * from t1 where 1=2;
Table created.
SQL> create materialized view t2 on prebuilt table refresh fast on commit as select * from t1;
Materialized view created.SQL> insert into t1 values(1,‘A‘);
1 row created.
SQL> commit;
Commit complete.
SQL> select * from t2;
ID NAME
---------- ------------------------------
1 ASQL> alter table t1 add ddl_test int;
Table altered.
SQL> alter table t1 rename column name to names;
Table altered.
SQL> select * from t2;
ID NAME
---------- ------------------------------
1 A
2 4
SQL> insert into t1 values(3,‘x‘,1234);
1 row created.
SQL> commit;
Commit complete.
SQL> select * from t1;
ID NAMES DDL_TEST
---------- ------------------------------ ----------
1 A
2 4
3 x1234
SQL> select * from t2;
ID NAME
---------- ------------------------------
1 A
2 4
发现数据没有过来,我们看一下物化视图的定义和状态SQL> select dbms_metadata.get_ddl(‘MATERIALIZED_VIEW‘,‘T2‘) from dual;
DBMS_METADATA.GET_DDL(‘MATERIALIZED_VIEW‘,‘T2‘)
--------------------------------------------------------------------------------
CREATE MATERIALIZED VIEW "SCOTT"."T2" ("ID", "NAME")
ON PREBUILT TABLE WITH
SQL> select staleness from user_mviews;
STALENESS
-------------------
COMPILATION_ERROR
原文:http://7642644.blog.51cto.com/7632644/1692797