Viewing 5 posts - 1 through 6 (of 6 total)
Hi Jeff,
Thanks for all your help with this. I feel the same way you do with the CASCASE. I think it is the wrong way...
September 29, 2008 at 6:40 am
Wait, I didnt think my chains overlapped.
Here:
ZIP>SCHOOL
ZIP>DISTRICT
My district tabel and school table have a reference to zip.
If I delete ZIP I want to delete both the school and district
So each...
September 26, 2008 at 2:58 pm
Yes, and thats really wired because I trued that, well sort of.
I tried the following:
alter table my_table2
add constraint fk_my_table2
foreign key (fk_id2)
references my_table1(pk_id)
on delete cascade
This worked, then tried this
alter table my_table3
add...
September 26, 2008 at 1:47 pm
How do you get around Delete Cascade when there are more that 2 tables involved without a trigger? is there a way in 2008?
Thanks
September 26, 2008 at 12:07 pm
Does 2008 allow this? If not, is there a way around it without a trigger? Like DeleteOnNull or something like that? I'm trying to convert my oracle...
September 26, 2008 at 12:04 pm
Viewing 5 posts - 1 through 6 (of 6 total)