【问题标题】:Relation between two tables with an optional third table in between两个表之间的关系,中间有一个可选的第三个表
【发布时间】:2017-03-31 19:32:21
【问题描述】:

我有以下架构和数据。

--drop table table_c;
--drop table table_b;
--drop table table_a;

create table table_a (
  id    number(3,0)  primary key,
  value varchar2(10)
);

create table table_b (
  id    number(3,0)  primary key,
  a_id  number(3,0)  not null,
  value varchar2(10),
  constraint b_fk1 foreign key (a_id) references table_a(id)
);

create table table_c (
  id    number(3,0)  primary key,
  a_id  number(3,0)  null,
  b_id  number(3,0)  null,
  value varchar2(10),
  constraint c_fk1 foreign key (a_id) references table_a(id),
  constraint c_fk2 foreign key (b_id) references table_b(id)
);

-- table a
insert into table_a (id, value) values (1, 'a');
insert into table_a (id, value) values (2, 'b');
-- table b
insert into table_b (id, a_id, value) values (1, 1, 'aa');
insert into table_b (id, a_id, value) values (2, 2, 'bb');
-- table c with ref to a
insert into table_c (id, a_id, value) values (1, 1, 'aaa');
insert into table_c (id, a_id, value) values (2, 2, 'bbb');
-- table c with ref to b
insert into table_c (id, b_id, value) values (3, 1, 'ccc');
insert into table_c (id, b_id, value) values (4, 2, 'ddd');
COMMIT;

如果我们没有从table_ctable_a 的直接链接,它基本上是table_atable_c 之间的关系,并通过table_b 进行路由。

table_c 中的每个元素都将填充 a_idb_id。如果我们有a_id,我们就没有b_id。如果我们有b_id,我们就没有a_id。两者不能同时为null,也不能同时为非空。

现在我被要求创建一个物化视图来显示table_atable_c 之间的关系。

我的第一个想法是更新table_c,以便a_id 始终是最新的。客户对数据库有很强的控制力,禁止我这样做!

--drop materialized view mv_d;
--drop materialized view log on table_c;
--drop materialized view log on table_b;
--drop materialized view log on table_a;

create materialized view log on table_a with rowid, sequence;
create materialized view log on table_b with rowid, sequence;
create materialized view log on table_c with rowid, sequence;

create materialized view mv_d
  refresh fast on commit
  enable query rewrite
  as
    select a.value as a_val,
           c.value as c_val,
           a.rowid as a_rowid,
           b.rowid as b_rowid,
           c.rowid as c_rowid
      from table_a a,
           table_b b,
           table_c c
     where (c.a_id is null and c.b_id = b.id and b.a_id = a.id)
        or (c.a_id is not null and c.a_id = a.id);

execute dbms_stats.gather_table_stats( user, 'mv_d' ) ;

我对这个 mv 的问题是结果不是我所期望的。这就是我得到的。请注意,rowid 被缩写以显示它们的差异和实际结果,这意味着它们为什么是重复的。

select * from mv_d;

-- note, the rowids are for information only, but are abbreviated to only show how they're different.
 a_val | c_val | a_rowid | b_rowid | c_rowid
-------+-------+---------+---------+---------
 a     | aaa   | GAAA    | WAAA    | mAAA
 a     | ccc   | GAAA    | WAAA    | mAAC
 a     | aaa   | GAAA    | WAAB    | mAAA
 b     | bbb   | GAAB    | WAAA    | mAAB
 b     | bbb   | GAAB    | WAAB    | mAAB
 b     | ddd   | GAAB    | WAAB    | mAAD

理想情况下,我会从select * from mv_d 得到以下结果(除rowid 列之外,ofc)。

 a_val | c_val 
-------+-------
 a     | aaa   
 a     | ccc   
 b     | bbb   
 b     | ddd   

如何在我的物化视图中获得该结果?

请注意,我的实际数据库对于table_atable_btable_c 分别有 300 万、600 万和 100 万条记录。过滤所有内容的实际结果存在于具有大约 10k 条记录的物化视图中。

【问题讨论】:

  • select distinct a_val, c_val from mv_d?
  • @jarlh 中间 mv_d 有 1 亿条记录?不,我不能拥有那个。问题出在物化视图的查询上,而不是在查询之后。

标签: sql oracle materialized-views


【解决方案1】:
select      a.value as a_val
           ,c.value     as c_val
           ,a.rowid     as a_rowid
           ,b.rowid     as b_rowid
           ,c.rowid     as c_rowid

from                    table_a a

            join        (           table_c c

                        left join   table_b b

                        on          c.b_id  = b.id
                        )

            on           a.id = nvl (b.a_id,c.a_id) 

;

物化视图请使用旧式代码

select      a.value as a_val
           ,c.value     as c_val
           ,a.rowid     as a_rowid
           ,b.rowid     as b_rowid
           ,c.rowid     as c_rowid

from        dmarkovitz.table_a a
           ,dmarkovitz.table_b b
           ,dmarkovitz.table_c c

where       c.b_id  = b.id (+)
        and a.id    = nvl (b.a_id,c.a_id) 
;

【讨论】:

  • 我会测试,但我的 DBA 坚持认为这种连接在物化视图中不起作用...
  • 现在它就像一个魅力!非常非常感谢!
  • @OlivierGrégoire,我的荣幸 :-)
  • @DuduMarkowitz 嗯...现实回调...如果我添加 insert into table_b (id, a_id, value) values (3, 1, 'cc'); COMMIT; 将不起作用。有了这个,我得到 5 个结果而不是 4 个。而第 5 个是“重复的”。
猜你喜欢
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 2017-07-18
  • 2012-07-11
  • 2019-08-01
  • 2013-07-01
  • 2019-08-26
  • 1970-01-01
相关资源
最近更新 更多