vote up 0 vote down star

entity A --> id, entity_a_name, foreign_key_entity_B entity B ---> id, entity_b_name

when i delete entity B record, it suppose to auto delete entity A that has foreign_key_entity_B ?

Error: ORA-02292: integrity constraint (schema.FKA630D2FB5F0F1180) violated - child record found
flag

62% accept rate

1 Answer

vote up 1 vote down check

Well most Oracle databases I've seen don't auto-delete child records or anything. So you should delete all child records before you can delete you parent record.

link|flag
smart you know i'm using oracle =) mean no workaround other than manually delete child – cometta Nov 2 at 9:08
Well you could always look into cascade delete as a workaround but I don't really have alot any experience with it myself but I think it should be used with caution, any mistakes could result in unwanted data loss ;-) – NickDK Nov 2 at 9:12

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.