oracle物化视图是映射,Oracle 使用物化视图实现表数据同步

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

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值