Oracle
 sql >> Datenbank >  >> RDS >> Oracle

PLSQL:Alternative zu Stored Procedure für optimale Leistung

In Oracle müssen Sie für solche Dinge normalerweise keine globalen temporären Tabellen verwenden, sondern Sie können die Massenverarbeitung mit Arrays verwenden:

declare
   cursor c is
      select col1, col2 from my_view;
   type t is table of c%rowtype;
   array t;
begin
   open c;

   loop
      fetch c bulk collect into array limit 1000;
      exit when array.count = 0;

      for i in 1..array.count loop
         null; -- Perform business logic on array(i) here
      end loop;

      forall i in 1..array.count
         insert into final_table (col1, col2)
            values (array(i).col1, array(i).col2);

   end loop;

   close c;
end;

Das ist nur ein Minimalbeispiel – siehe diesen Artikel für weitere Details.