Oracle Index 和null 研究

WBOY
发布: 2016-06-07 17:35:47
原创
899 人浏览过

Oracle Index 和null 研究,这里1可以是任意数字或字母。而这时,select语句的谓词不需要更改,还是t_name is null.

Indexing null values

安装关系数据库理论, null表示未知,Oracle b-tree index是不包含null的。考虑如下表:

create table tt (t_id number, t_name varchar2(10));
create index tt_idx on tt(t_name);

select * from tt where t_name is null是不会使用index scan的,这经常会造成性能问题。

解决办法就是:创建一个函数索引,并在select 中包含该函数,如:

create index tt_idex on tt( nvl(t_name), 1);
select * from tt where nvl(t_name,1)=1;

从11g开始有另一个方法:

create index tt_idx on tt(t_name asc, 1);

这里1可以是任意数字或字母。而这时,select语句的谓词不需要更改,还是t_name is null.

Uniqueness and null

drop index tt_idx;
create unique index tt_idx on tt(t_name);
insert into tt values(1, null);
commit;
insert into tt values(1, null);
commit;

这段SQL可以执行成功。这是因为null不被索引包含。

create table ttt2  (tt2_id number, tt21 varchar2(10), tt22 varchar2(10));
create unique index ttt2_idx on ttt2(tt21, tt22);
--Successful
insert into ttt2 values(1, null, null);
insert into ttt2 values(1, null, null);
commit;
--Fail
insert into ttt2 values(1, '1', null);
insert into ttt2 values(1, '1', null);
commit;

第二个事务会失败。因为null不被索引包含, 两个'1'就是重复值!

 

Conditional uniqueness

假如有需求:

  • tt21, tt22都可以为null
  • 仅在tt21和tt22都不为null时,,需要保证唯一性!
  • 这时的解决方法:Function based index 。

    create table ttt2  (tt2_id number, tt21 varchar2(10), tt22 varchar2(10));
    create or replace function conditional_uniqueness(p_tt21 varchar2, p_tt22 varchar2)
    return varchar2
    DETERMINISTIC
    as
    begin
      if(p_tt21 is not null and  p_tt22 is not null) then
        return p_tt21||p_tt22;
      else
        return null;
      end if;
    end;
    create unique index ttt2_idx on ttt2(conditional_uniqueness(tt21, tt22));
    --Fail!
    insert into ttt2 values(1, '1','1');
    insert into ttt2 values(1, '1','1');
    --Successful
    insert into ttt2 values(1, '1',null);
    insert into ttt2 values(1, '1',null);
    --Successful
    insert into ttt2 values(1, null,'1');
    insert into ttt2 values(1, null,'1');
    commit;

    linux

    来源:php.cn
    本站声明
    本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
    热门教程
    更多>
    最新下载
    更多>
    网站特效
    网站源码
    网站素材
    前端模板
    关于我们 免责声明 Sitemap
    PHP中文网:公益在线PHP培训,帮助PHP学习者快速成长!