在很多软件系统中系统的性能很打程度上有数据库的性能决定以前也曾经做过很多次关于性能方面的各种测试特别是关于oracle的我想到也应该记录下来一部分为大家共享
事情发生在我们的系统从sqlserver移植到oracle用户在一个查询的操作上等待的时间无法忍受了我们关于这个查询的处理与原来的方式一下难道sqlserver 同oracle有什么地方不一样么让我们来看看oracle有什么地方有问题或者是我们使用的有问题?
业务问题大概可以这样描述一个父表一个子表查询的结果是找到子表中没有使用父表id的记录这种情况估计很多系统都会牵涉得到让我们来举一个例子
表一 父表 parent表二 子表 childen
父表存储父亲子表存储孩子然后通过pid和父表关联查询需要的结果是找到尚未有孩子的父亲
我们来看一下查询语句的写法
select * from parent where id not in (select pidfrom childen)
这种标准的写法在子表存在万条的记录的时候查询时间超过了秒远远大于原来的sql server服务器的一秒我在解决的时候想到了一个方法
select * from parent where id in
( select id from parent minus select pidfrom childen )
正常理解下这个语句应该更加费时但是事实完全出乎意料这条语句不仅仅在子表存在大量记录的情况下速度良好在子表少量数据的情况下速度也非常的好基本在秒内完成
这个结果可以很明显的证明oracle 在子查询的内部处理的时候使用 in 和 not in 的巨大区别希望用到这种方式的用户注意也期待有人解释其中的问题
附录 测试数据的语句
create parent table
drop table parent;
create table parent(id varchar()name varchar() primary key (id) );
create childen table
drop table childen;
create table childen(id varchar()pid varchar() name varchar() primary key (id) );
Create/Recreate primary unique and foreign key constraints
alter table CHILDEN
add constraint fk_ foreign key (PID)
references parent (ID);
add test date for parent
Created on by GUIP
declare
Local variables here
i integer;
begin
Test statements here
i := ;
delete from parent;
loop
i := i + ;
dbms_outputput_line(i);
insert into parent(id name) values(i name || i);
if (i mod =) then
commit;
end if;
exit when i > ;
end loop;
commit;
end;
add test date for childen
Created on by GUIP
declare
Local variables here
i integer;
j integer;
begin
Test statements here
i := ;
delete from childen ;
loop
j := ;
loop
i := i + ;
j := j + ;
insert into childen(id pid name) values(i j name || j);
if (i mod =) then
commit;
end if;
exit when j>= ;
end loop;
exit when i >= * ;
end loop;
commit;
end;