Blogonaut: Hail to the Victors: Project Questions...
The error code that we receive is: ERROR at line 1:
ORA-02298: cannot validate (KBARTNIC.SYS_C0044228) - parent keys not found
This doesn't make sense because story_id is the primary key of both our story table and our subheadline table, but it won't allow us to execute the following command:
alter table subheadline add foreign key (story_id) references story;
Without a constraint here, we can enter in subheadlines for stories that don't exist.
Oh well, I suppose that we can just make it an attribute.