My goal is to delete selected records (from MemberMaster) and have cascading deleting on associated tables containing a matching foreign key. I’m getting a " integrity constraint violation: foreign key no action; SYS_FK_10138 table: PhoneNumbers" error. I tried to use MATCH SIMPLE ON DELETE CASCADE
with my basic statement `
` DELETE FROM "MemberMaster" WHERE "NotActive" = TRUE
with no success at all. I must really be misunderstanding the constraint definition concept. Been reading about it all day and understand less now then when I started. Any help is appreciated.
Joe