我在下面写了这样的东西(它有效),但在我的情况下,对于 150 万行,它并没有我需要的那么有效(它可能会运行 2 天)我看到了像 BULK COLLECT FETCH FORALL 之类的东西,但我是没有设法将我的代码重写为此而没有错误。你能帮我吗?
谢谢
--It is my code for rewriting
DECLARE
cnt NUMBER;
d_min NUMBER;
d_max NUMBER;
i NUMBER := 0;
CURSOR ts_metatata_cur IS select * from (select rownum as rn, id_profile from ts_metadata where typ=7 and per=3600 order by id_profile) where rn between 1 and 100000;
BEGIN
for metadata_rec in ts_metatata_cur
LOOP
XTS.GET_PROFILE_AGGR(metadata_rec.id_profile, cnt, d_min, d_max); --procedure with one IN parameter and three OUT parameter cnt, d_min, d_max
Execute immediate 'insert into TMP_PROFILES_OVERVIEW (id_profile, cnt, d_min, d_max) values (' || metadata_rec.id_profile || ', ' || cnt || ', ' || d_min || ', ' || d_max ||')';
i := i+1;
if (i > 10000) then
commit;
i := 0;
end if;
END LOOP;
commit;
END;
如果有必要,我在这里给出我称之为的程序:
--this is procedure, which I call in my script
CREATE OR REPLACE PROCEDURE XTS.GET_PROFILE_AGGR(id_prof IN NUMBER, cnt OUT NUMBER, d_min OUT NUMBER, d_max OUT NUMBER)
AS
res varchar2(61);
BEGIN
select cluster_table_name into res FROM XTS.TIME_SERIES TS where TS.id=id_prof;
Execute immediate 'select nvl(count(*),0), nvl(min(time),0), nvl(max(time),0) from '|| res || ' where time_series_id=' || id_prof || ' ' into cnt, d_min, d_max;
EXCEPTION
when others then
null;
END;