oracle批量绑定的概念

本文介绍Oracle9i开始引入的批量绑定技术,通过使用forall和bulkcollect关键字提高数据处理效率。对比了使用与未使用批量绑定时插入大量数据的性能差异,并展示了如何利用这些关键字进行批量数据操作。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

oracle9i开始,oracle提供批量绑定关键词forallbulk collect通过批量绑定技术,极大地加快了数据的处理速度。在不使用批量绑定的时候,为了将嵌套表中的数据插入数据库表中,需要循环执行insert语句,而使用forall关键词可以让所有插入内容集中在一次insert中执行,从而加快了执行速度。Bulk collect子句用于取得批量数据,该子句只能用于select语句、fetch语句和DML返回子句中;而forall语句只适用于执行批量的DML操作。
declare
 type id_table_type istableofnumber(6) indexbybinary_integer;
 type name_table_type istableofvarchar2(10) indexbybinary_integer;
 id_table id_table_type;
 name_table name_table_type;
 start_time number(10);
 end_time number(10);
begin
 for i in1..100000loop
    id_table(i) := i;
    name_table(i) := 'name'||i;
 endloop;
 deletefrom demo;
 start_time := dbms_utility.get_time;
 for i in1..100000loop
    insertinto demo values(id_table(i),name_table(i));
 endloop;
 end_time := dbms_utility.get_time;
 dbms_output.put_line('花费时间:'||to_char((end_time-start_time)/100));
 
 deletefrom demo;
 start_time := dbms_utility.get_time;
 forall i in1..100000
    insertinto demo values(id_table(i),name_table(i));
 end_time := dbms_utility.get_time;
 dbms_output.put_line('花费时间:'||to_char((end_time-start_time)/100));
end;
在oracle9i中,当使用forall语句时,必须具有连续的元素;从10g开始,通过使用indices of子句和values of子句,可以使用不连续的集合元素,这里forall跟for不一样的是它并不是一个循环语句。从10g开始,forall的语句有三种执行语法:
l         Forall index in lower_bound..upper_bound sql_statement; 其中index是隐含定义的整数变量,lower_bound和upper_bound为集合元素的上下限。
l         Forall index in indices of collection [between lower_bound..upper_bound] sql_statement;其中collection为嵌套表名称,这里只取嵌套表collection中下标位于lower_bound和upper_bound之间的非空元素值。
l         Forall index in values of index_collection sql_statement; 其中index_collection为存储下标的集合变量,就是说本集合变量的内容为要取的集合collection的下标,例如(2,3,5)。
另外,为了记录forall更新的行数,特别定义了sql%bulk_rowcount,使用方法如下。
declare
 type test_table_type istableofvarchar2(100);
 test_table test_table_type := test_table_type('name2','name','asdf');
begin
 forall i in1..test_table.count
    update demo setname = 'zhanglei'wherename = test_table(i);
 dbms_output.put_line('第二个元素更新的行数:'||sql%bulk_rowcount(1));
dbms_output.put_line('第二个元素更新的行数:'||sql%bulk_rowcount(2));
 dbms_output.put_line('第二个元素更新的行数:'||sql%bulk_rowcount(3));
end;
bulk collect子句用于取得批量数据,它只适用于select into语句,fetch into语句和dml返回子句。语法为 select * bulk collect into collection_name …其中collection_name为集合名称。
declare
 type test_table_type istableofvarchar2(20) indexbybinary_integer;
 test_table test_table_type;
begin
 selectnamebulkcollectinto test_table from demo wherename = 'zhanglei';
 for i in1..test_table.countloop
    dbms_output.put_line(test_table(i));
 endloop;
end;
bulk collect子句的另外一个使用环境就是在DML的返回子句中,执行dml操作会改变数据库数据,为了取得dml操作改变的数据,可以使用returning子句,为了取得dml所作用的多行数据,则需要使用bulk collect子句。
declare
 type test_table_type istableofvarchar2(20) indexbybinary_integer;
 test_table test_table_type;
begin
 deletefrom demo wherename = 'zhanglei'
 returningnamebulkcollectinto test_table;
 for i in1..test_table.countloop
    dbms_output.put_line(test_table(i));
 endloop;
end;
 
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值