Hi
I have an Oracle PL / SQL script. It processes about 51 millon registers, and writes results to 5 different tables.
The problem is that I left the process running last night, and apparently there was an overflow in the UNDO logs.
Particularly, we are not interested in Rollbacking this script, if it fails, we can run it again.
Is there any way optimize the usage of the undo / redo logs? Avoid writing them or minimizing those writes?
As far as I understand, setting the NOLOGGING attribute the output tables would help, in addition to using the APPEND insert (as said here)
Any tips will be appreciated. Thanks in advance.