标签:
查询语句pl/sql中用F5优化语句
ORACLE的explain plan工具的作用只有一个,获取语句的执行计划
1.语句本身并不执行,ORACLE根据优化器产生理论上的执行计划
2.语句的分析结果存放在表PLAN TABLE中
select * from TABLE
where NOWTIME >=to_date(‘20160101‘,‘yyyy-mm-dd‘) and NOWTIME < to_date(‘20160102‘,‘yyyy-mm-dd‘)
通过截图显示select语句是走索引的“INDEXRANGE SCAN”后边是索引名称,cost显示成本,走索引成本是很低的。
如果没有“INDEXRANGE SCAN”,表之前是建有索引,说明索引失效,我们无需删掉再建立索引,只需要用以下语句重建索引,速度很快,即使表里有上千万数据。
alter index index_name rebuild tablespace tablespace_name 加入表空间名,会将指定的索引移动到指定的表空间当中。
存储过程:
//////////////////////////////////////////
create or replace procedure loop_while
(
start_date in date,
end_date in date
)
is
current_date date := start_date;
current_date_end date;
begin
while current_date <=end_date
loop
current_date_end:=current_date+1;
insert into TABLE1
select * from TABLE
where NOWTIME >=current_date and NOWTIME < current_date+1 ;
commit;
current_date:=current_date+1;
end loop;
end loop_while;
/////////////////////////////////////////////////////////////////
按天循环插入表中。
oracle查询优化,存储过程select表循环插入另一个表,以及索引重建
标签:
原文地址:http://www.cnblogs.com/zigewb/p/5108653.html