zoukankan      html  css  js  c++  java
  • 批量插入,更新,删除数据

    --插入数据:

    declare
      --定义cursor把数据全部读入内存中
      cursor cur is
       select t.pk_account_detail_id from Ecm_Member_Account_Details t;
      --自定义集合类型
      type rec is table of cur%rowtype;
      recs rec;
    begin
      open cur;
      while (true) loop
        fetch cur bulk collect
          into recs limit 10000;--10000行执行一次游标读取操作
        --把数据逐条插入
        forall i in 1 .. recs.count
           Insert /*+parllel(t,4)*/ Into test_a
            Select * from test_b t Where t.pk_payrefu_id=Recs(i).pk_payrefu_id;
        commit;
        exit when cur%notfound;
      end loop;
      close cur;
    end;

    --更新操作

    declare
          type rowid_list is table of Number index by binary_integer;
       --   i number;
          rowid_infos rowid_list;
          cursor c_rowids is select t.pk_account_detail_id from Ecm_Member_Account_Details t ;
      begin
          open c_rowids;
          loop
           fetch c_rowids bulk collect into rowid_infos limit 10000;
           Forall i in 1..rowid_infos.count
              Update /*+parllel(t,4)*/ Ecm_Member_Account_Details Tt Set Tt.Fk_Order_Class_Id = 1
                  where tt.pk_account_detail_id=rowid_infos(i);
           commit;
           exit when rowid_infos.count<10000;
         end loop;
         close c_rowids;
      end;

    --删除操作

    declare
      --定义cursor把数据全部读入内存中
      cursor cur is
       select t.id from test_a t;
      --自定义集合类型
      type rec is table of cur%rowtype;
      recs rec;
    begin
      open cur;
      while (true) loop
        fetch cur bulk collect
          into recs limit 10000;--10000行执行一次游标读取操作
        --把数据逐条插入
        forall i in 1 .. recs.count
           delete From Ecm_Order_Payrefus t Where t.pk_id=Recs(i).id;
        commit;
        exit when cur%notfound;
      end loop;
      close cur;
    end;

     转:http://www.cndba.cn/account/article/details/129

  • 相关阅读:
    T-GCN: A Temporal Graph Convolutional Network for Traffic Prediction
    pandas.read_csv中的usecols函数实现读取指定列
    python3.7+tensorflow+keras的安装
    python操作word表格格式
    windows下pip换阿里云(贼快)
    Python中 sys.argv[]的用法简明解释
    ARIMA时间序列分析
    python--data.dropna
    查看linux系统的常用命令
    redis在php中的应用(server篇)
  • 原文地址:https://www.cnblogs.com/andy6/p/5840700.html
Copyright © 2011-2022 走看看