It is possible to create a materialized view ON PREBUILT TABLE. The table may be index organized and attach the materialized view query on top to the existing table. Here is an example of such.
drop materialized view ab; drop table ab; drop table b; drop table a; create table a(aid int primary key, aname varchar2(20)); create table b(bid int primary key, aid references a, bname varchar2(20)); create table ab(aid int, bid int constraint ab_pk primary key, aname varchar2(20), bname varchar2(20)) organization index; create materialized view ab (aid, bid, aname, bname) on prebuilt table as select a.aid, b.bid, a.aname, b.bname from a, b where a.aid=b.aid ; insert into a values (1,'A'); insert into b values (1,1,'B'); insert into a values (2,'C'); insert into b values (2,2,'D'); commit; exec dbms_mview.refresh('AB','C'); select * from ab; 1 1 A B 2 2 C D select segment_name,segment_type from user_segments where segment_name like 'AB_PK'; AB_PK INDEX select table_name,iot_type from user_tables where table_name = 'AB'; AB IOT
No comments:
Post a Comment