I've this kind of delete query:
DELETE
FROM SLAVE_TABLE
WHERE ITEM_ID NOT IN (SELECT ITEM_ID FROM MASTER_TABLE)
Are there any way to optimize this?
|
|
You can use EXECUTE BLOCK for sequential scanning of detail table and deleting records where no master record is matched.
|
||||
|
|
|
I am not sure what you are trying to do here, but to me this query indicates that you should be using foreign keys to enforce these kind of constraints, not run queries to cleanup the mess afterwards. |
|||||||
|