#Oracle: ORA-02298: cannot validate "key" – parent keys not found

By | December 17, 2019

When trying to add a foreign key to a table sometimes the error ORA-02298 is thrown.

Let’s have two tables a MyTable and a MyTableHistory connected by a historyid column from MyTable that points to the id column from MyTableHistory

Try then to add add foreign key like:

ALTER TABLE MyTableHistory add CONSTRAINT MyKey foreign key (default_id) references MyTable;

If we are in the case of the ORA-02298 error the following message will be given by Oracle:

Error report -
ORA-02298: cannot validate (MyKey) - parent keys not found
02298. 00000 - "cannot validate (%s.%s) - parent keys not found"
*Cause:    an alter table validating constraint failed because the table has child records.
*Action:   Obvious

Funny how someone marked the solution as “Obvious” 🙂 Not so obvious because I had to look around some time to figure out what was the problem.

This error means that you have ids in your MyTableHistory table that are not present in the MyTable table. The foreign key can therefore not be applied.

This can be checked by running a query like:

SELECT * FROM MyTableHistory WHERE id NOT IN (SELECT MyTable.historyid FROM MyTable);

If the above query returns some rows it means that at some point we deleted (cleaned) some rows from the MyTable without cleaninf also the refered entries from MyTableHistory.

Do do the proper clean-up I had to execute:

DELETE FROM MyTableHistory WHERE id NOT IN (SELECT MyTable.historyid FROM MyTable);

After the clean-up is done we then ca execute again:

ALTER TABLE MyTableHistory add CONSTRAINT MyKey foreign key (default_id) references MyTable;

Success !

2 thoughts on “#Oracle: ORA-02298: cannot validate "key" – parent keys not found

  1. Anonymous

    Great,but can you please explain more clearly why this happen to me?

    Reply
    1. Anonymous

      Check if the column you want to use as a foreign key has any id that is not in the you want to reference

      ______ _________
      |Table A| |Table B |
      ———– ——————–
      |ID | |ID | Foreign key |
      | 1 | |1 | 2 |
      | 2 | |2 | 3 |

      You probably had a Foreign key on table B pointing to an id that doesn’t exist on the Table A

      Reply

Leave a Reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.