SQL How to change a constraint
Below is 1 of my limitations
CONSTRAINT ACTIVEPROG_FKEY1 FOREIGN KEY(ActiveProgCode) REFERENCES PROGRAM(ActiveProgCode),
I want to add
ON DELETE CASCADE
to the above limitation.
How do I change an existing ACTIVEPROG_FKEY1 constraint and add
ON DELETE CASCADE
to limit ACTIVEPROG_FKEY1
Consider ACTIVEPROG_FKEY1 in the ACTIVEPROG table
sql oracle
user1777711 Nov 06 '12 at 5:24 2012-11-06 05:24
source share