I'm trying to find records that is violating the ORA-02291: integrity constraint::
I was running this query, But I didnt get any results back::
SELECT child.parent_id
FROM child LEFT JOIN parent ON child.parent_id = parent.parent_id
WHERE parent.parent_id IS NULL;
Am I missing something or what are the other ways to find the records which are violating these constraints.