Quote Originally Posted by crysu View Post
1. No
2. Between 70 and 90%
This is a text book case where you may want to consider deleting data by doing inserts instead of doing deletes.

Here is the scenario...
You want to delete 70%+ of the rows sitting on table_a
1- Rename table_a as table_b
2- Create table_a as select * from table_b where v_column_name > sysdate - v_retention_days
3- Build indexes
4- Gather fresh stats.
5- After business approval drop table_b

This is faster, generates less redo and ensures tables and indexes are not fragmented at the end of the process.

Can you afford a maintenance window to do it?