Re: bridge tables
Posted by: Bill Karwin
Date: November 30, 2006 05:41PM

Cascading referential integrity operations are for UPDATE and DELETE only. So if you change the primary key value or remove the rows in the author or book tables, dependent rows in tables that refer to those primary keys are also updated or deleted accordingly.

But there is no such thing as a cascading INSERT.

There's no way for referential integrity to infer that Herman Melville wrote Moby Dick just because you entered those two records in the authors and books tables respectively. It doesn't matter that you entered the records within a short period of time, or even within the same transaction. It still does not imply a relationship between that author and that book.

You need to enter a row with that information into the the bridge table explicitly.

Regards,
Bill K.

Options: ReplyQuote


Subject
Written By
Posted
November 15, 2006 10:36PM
Re: bridge tables
November 30, 2006 05:41PM
January 03, 2007 01:33PM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.