Database : Oracle 11g Server : GNU/Linux Bash Shell.
I have developed a shell script that use sqlplus to connect to the database and select each row from a table and update a column with a value.
I designed this because I had very little data on that table,but now the data have grown to 500K rows. Select and update each record will obviously take long time to update 500K rows.
Is there a way I can execute the script in parallel but each script picks up unique record and update the row ? avoid updating same row by the scripts running parallel?