I have following requirement -
I have to
1.query a table and select approx 20k rows matching somecondition.
2.process those records and change some fields.
3.update the same table with changed records.
How I can use multithreading to batch SELECT,PROCESS and UPDATE records? Any best practices? What is optimum thread number to use? Any alternative approaches?
! ROWS TO BE USED ARE INDEPENDENT OF EACH OTHER