從Oracle的SGA的構(gòu)成來看,它是推崇使用 參數(shù)綁定的。使用參數(shù)綁定可以有效的使用Share Pool,對(duì)已經(jīng)緩存的SQL不用再硬解析,能明顯的提高性能。
具體實(shí)踐如下:
SQL>create table test (a number(10)); |
再創(chuàng)建一個(gè)存儲(chǔ)過程:
create or replace procedure p_test is
i number(10);
begin
i := 0;
while i <= 100000 loop
execute immediate ' insert into test values (' || to_char(i) || ')';
i := i + 1;
end loop;
commit;
end p_test; |
先測(cè)試沒有使用參數(shù)綁定的:
運(yùn)行 p_test 后,用時(shí)91.111秒。
再創(chuàng)建一個(gè)使用參數(shù)綁定的:
create or replace procedure p_test is
i number(10);
begin
i := 0;
while i <= 100000 loop
execute immediate ' insert into test values (:a)'
using i;
i := i + 1;
end loop;
commit;
end p_test; |
運(yùn)行 p_test 后,用時(shí)55.099秒。
從上面的運(yùn)行時(shí)間可以看出,兩者性相差 39.525%,可見,用不用參數(shù)綁定在性能上相差是比較大的。