Brug følgende til at deaktivere begrænsninger:
-- disable UNIQ, PK, ...
ALTER TABLE <tablename> DISABLE KEYS;
-- diable FK
SET FOREIGN_KEY_CHECKS=0;
Tjek for eksempel dette websted for flere eksempler. Gendan med:
SET FOREIGN_KEY_CHECKS=1;
ALTER TABLE <tablename> ENABLE KEYS;
Fra referencen:
- foreign_key_checks
- DAKTIVERENDE NØGLER :" Brug ALTER TABLE ... DEAKTIVER NØGLER til at fortælle MySQL at stoppe med at opdatere ikke-unikke indekser. ..."
p.s. :fra InnoDB-tip til justering af ydeevne
SET autocommit=0;
SET unique_checks=0;
SET foreign_key_checks=0;