- create or replace procedure largedata_insert(ip_table_name in varchar2, --目标表
- ip_table_column in varchar2, --目标字段
- ip_table_select in varchar2, --SELECT 查询语句
- return_result out number --返回的结果1,表示成功,0表示失败
- ) as
- --适合大数据量的插入模板 create Templates by chenzhoumin 20110614
- runTime number;
- i number;
- amount number;
- s_sql varchar2(5000);
- begin
- return_result := 0; --开始初始化为0
- --核必逻辑内容,可根据具体的业务逻辑来定义
- s_sql := 'select count(1) from (' || ip_table_select || ')';
- execute immediate s_sql
- into amount;
- --每100万提交一次
- runTime := amount mod 1000000;
- if (runTime > 0) then
- runTime := 1 + trunc(amount / 1000000);
- end if;
- if (runTime = 0) then
- runTime := 0 + trunc(amount / 1000000);
- end if;
- FOR i IN 1 .. runTime LOOP
- execute immediate 'insert into ' || ip_table_name || ' (' ||
- ip_table_column || ')
- select ' || ip_table_column || ' from (select selectSec.*, rownum rownumType
- from (' || ip_table_select ||
- ') selectSec
- WHERE ROWNUM <= ' || i * 1000000 || ')
- WHERE rownumType > ' || (i - 1) * 1000000;
- --提交
- commit;
- END LOOP;
- return_result := 1;
- dbms_output.put_line('结束' || to_char(sysdate, 'yyyymmddhh24miss'));
- return;
- exception
- when others then
- return_result := 0;
- raise;
- return;
- end;
相关文章
- 03-14Sql存储过程
- 03-14SQL存储过程基于字段名传入的字符串拼接.
- 03-14SQL 存储过程 传入数组参数
- 03-14sql 解析字符串添加到临时表中 sql存储过程in 参数输入
- 03-14SqlServer_存储过程
- 03-14sqlserver存储过程创建和java调用
- 03-14存储过程 100w提交
- 03-14SQL分页存储过程(不支持多表联合查询,不支持多字段排序)
- 03-14存储过程授权给子用户
- 03-14SQL 单表分页存储过程和单表多字段排序和任意字段分页存储过程