Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
Home -> Community -> Usenet -> c.d.o.server -> Re: ON UPDATE CASCADE - is there such a thing?
Should have included this -
ALTER TABLE required_resource ADD ( CONSTRAINT fk_reqres_resnameid FOREIGN KEY ( res_name_id ) REFERENCES MANPOWER_FORECAST ( res_name_id ) ON DELETE CASCADE ); so if "res_name_id" changes in "MANPOWER_FORECAST" I want all "res_name_id"'s in "required_resource" to be updated! Received on Thu Jun 24 2004 - 10:44:40 CDT