When not to use PARALLEL hint in queries?
Oracle 9i
=======
I have a table of over 8000k records spread over 8 partitions. I have a query that accesses all the partitions to retrieve a set of records -
DELETE FROM table WHERE pay <> 'Y'
I can't find anything to improve upon when I see the EXPLAIN PLAN...except a PARALLEL hint. Now, I want to know whether (or how) this can be detrimental to the database. There must be some trade-offs that I should take care of?