I have a pair of tables in an Oracle database with a one-to-one parent-child relationship. Unfortunately the foreign key is defined in the parent, not the child:
----------------- -----------------
| messages | | payloads |
----------------- -----------------
| id | | id |
| payload_id |------->| content |
| creation_date | -----------------
-----------------
The relationship from messages.payload_id to payloads.id is enforced by a non-deferrable foreign key.
We have a query that deletes all messages and payloads where message creation date is after a certain time. Unfortunately, due to the backwards foreign key, the current query looks like this:
DELETE FROM messages WHERE creation_date < deletion_date;
DELETE FROM payloads WHERE id NOT IN (SELECT payload_id FROM messages);
The second nasty delete statement is the problem, as it takes more than an hour when we have ~50 million records in each table.
Is there a better way to delete all messages and payloads?
Note that unfortunately the schema is beyond our control...