具體實踐如下
SQL>create table test (a number(
再創建一個存儲過程
create or replace procedure p_test is
i number(
begin
i :=
while i <=
execute immediate
i := i +
end loop;
commit;
end p_test;
先測試沒有使用參數綁定的
運行 p_test 後
再創建一個使用參數綁定的
create or replace procedure p_test is
i number(
begin
i :=
while i <=
execute immediate
using i;
i := i +
end loop;
commit;
end p_test;
運行 p_test 後
從上面的運行時間可以看出
Trackback: x?PostId=
From:http://tw.wingwit.com/Article/program/Oracle/201311/18411.html