Ask the Expert

Data model for foreign key referencing primary key

Table A has a composite primary key. Table B has a foreign key referencing one of the primary keys of the composite primary key of Table A. We've modeled this in our RDBMS, but our ORM tool, Hibernate, does not allow this kind of model. Is there any alternative data model to implement this?

    Requires Free Membership to View

You can implement your model in SQL*Plus without using any tool. Simply create the table and constraints.

That being said, if I had a FK constraint pointing to only a portion of a composite primary key, I would probably rethink my design. Are you sure that your design is correct and conforms to the Third Normal Form (3NF)? If you are not 3NF, then you run the risk of introducing data anomolies.

This was first published in May 2006

Join the conversationComment

Share
Comments

    Results

    Contribute to the conversation

    All fields are required. Comments will appear at the bottom of the article.