Hi,
My statement was not about the WHERE clause, it was about the fact that you need to update 2million records.... which means 2 million index updates as well.
But it's easy to benchmark - you will be comparing
1) update without indexes =
possibly more time spent on full table scan + less time spent updating rows
versus
2) update with indexes =
possibly less time spent on index access + more time spent updating rows
In my experience, people often discount #1 without even trying it.
The other option to consider is parallel dml,
https://docs.oracle.com/database/121/VLDBG/GUID-5EB01FA8-030B-45BB-9B16-2D13881F6010.htm