[Oracle]高效的PL/SQL程式設計(四)–批量處理

來源:互聯網
上載者:User

 

批量處理一般用在ETL操作, ETL代表提取(extract),轉換(transform),裝載(load), 是一個資料倉儲的詞彙!

類似於下面的結構:

for x (select * from...)
loop
    Process data;
    insert into table values(...);
end loop;

 

一般情況下, 我們處理大筆的資料插入動作, 有2種做法, 第一種就是一筆筆的迴圈插入

create table t1 as select * from user_tables where 1=0;
create table t2 as select * from user_tables where 1=0;
create table t3 as select table_name from user_tables where 1=0;

 

create or replace procedure Nor_Test
as
begin
     for x in(select * from user_tables)
     loop
         insert into t1 values x;
     end loop;
end;

第2種方法就是批量處理(insert全部欄位):

create or replace procedure Bulk_Test1(p_array_size in number)
as
 type array is table of user_tables%rowtype;
 l_data array;
 cursor c is select * from user_tables;
begin
     open c;
     loop
         fetch c bulk collect into l_data limit p_array_size;
         
         forall i in 1..l_data.count
                insert into t2 values l_data(i);
         
         exit when c%notfound;
     end loop;
end;

insert部分欄位:

create or replace procedure Bulk_Test2(p_array_size in number)
as
 l_tablename dbms_sql.Varchar2_Table;
 cursor c is select table_name from user_tables;
begin
     open c;
     loop
         fetch c bulk collect into l_tablename limit p_array_size;
         
         forall i in 1..l_tablename.count
                insert into t3 values (l_tablename(i));
         
         exit when c%notfound;
     end loop;
end;

在效能方面批量處理有著很大的優勢, p_array_size一般預設都是100

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.