Update/Delete from huge tables with intermediate commits

>>Script Language and Platform: SQL
If Database is in Archive log mode then look for archive generation.

Author: Susmit Sarkar

rem Usage: UPDATE/DELETE in a loop and commit very n records
rem =======================================

declare
  r number := 0;
 cursor cursor_name
 is SELECT rowid, t.column_name FROM table_name t WHERE column_name = 'value';
begin
 for x in cursor_name
 loop
      update table_name set column_name = 'value2'
             where rowid = x.rowid;
      r := r + 1;              -- Commit after every 1000 records
      if mod(i, 1000) then
         commit;
      end if;
  end loop;
  commit;
end;
/

Disclaimer: We hope that the information on these script pages is valuable to you. Your use of the information contained in these pages, however, is at your sole risk. All information on these pages is provided “as -is”, without any warranty, whether express or implied, of its accuracy, completeness, or fitness for a particular purpose… Disclaimer Continued

Back to Database Journal Home

Get the Free Newsletter!

Subscribe to Cloud Insider for top news, trends & analysis

Latest Articles