Parallel DELETE on non paritioned table - Possible?
Hello
We have a 19.17.0.0.0 database with a bunch of tables we are trying to DELETE the data from
The tables are NOT paritioned
We tried to set the DOP to 8 for all those table for thos tables and ran the delete like this -->
'delete /*+ parallel */ from ' table name ....
but not only we found out that oracle fired up like 48 parallel processes (instead of 8) but also it did not parallelize the delete and onle one session was doing the delete
Is there a way we can force the DELETES be parallelize when not using paritioned tables or is that not possible?