In our Java application I have requirement to read the around 80 million records from oracle database. I am trying to redesign the multithreading program for this. Currently we
As noted in the comments, multithreading might not help and may even make matters worse.
Standard alternatives for any query are:
SELECT COUNT...
there is nothing more you can do here!None of these are guaranteed to succeed. It would depend on what you are trying to do.