[ORACLE] Ajouter ON DELETE CASCADE

Ajouter ON DELETE CASCADE [ORACLE] - SQL/NoSQL - Programmation

Marsh Posté le 23-10-2005 à 15:01:47    

Bonjour,
 
Voila j'ai mon schéma déja créé  et je cherche a ajouter ON DELETE CASCADE sur certains clés étrangères,  j'ai cherché sur le net ,j'ai trouver comment "normalement" y arriver avec un ALTER TABLE , mais je n'y suis pas y arrivé.
 
Donc si quelqu'un pouvait me renseigner, merci d'avance  :hello:

Reply

Marsh Posté le 23-10-2005 à 15:01:47   

Reply

Marsh Posté le 23-10-2005 à 17:36:13    

pour bien faire tu supprimes les contraintes déja créer et tu les recrée
 
alter table nomtable ADD (
   CONSTRAINT nomcontrainte FOREIGN KEY (...) REFERENCES nomtable2 ( ... ) ON DELETE CASCADE
);

Reply

Sujets relatifs:

Leave a Replay

Make sure you enter the(*)required information where indicate.HTML code is not allowed