Quote Originally Posted by CoolGuyz View Post
Query is -
DELETE FROM ECOOVERLAYEVALUATION
WHERE creationdate < sysdate - 2;
COMMIT;

This table "ECOOVERLAYEVALUATION" in turn connects to other tables and deletes records from them.

I can not use Truncate as I do want to retain data for past two days.
So you are cascade deleting? I see, you are adding pieces of information one-at-a-time, some people would get crazy about that

What else should we know?

By the way, are you sure your predicate is no like: ... < trunc(sysdate - 2) ?