“schnellere MySQL -Importe” Code-Antworten

schnellere MySQL -Importe

#Innodb before import:
SET FOREIGN_KEY_CHECKS = 0;
SET UNIQUE_CHECKS = 0;
SET AUTOCOMMIT = 0;
#After import:
SET UNIQUE_CHECKS = 1;
SET FOREIGN_KEY_CHECKS = 1;
COMMIT;
Odd Opossum

schnellere MySQL -Importe

#To disable MySQL indexes:
ALTER TABLE `table_name` DISABLE KEYS;
#To enable MySQL indexes:
ALTER TABLE `table_name` ENABLE KEYS;
Odd Opossum

Ähnliche Antworten wie “schnellere MySQL -Importe”

Fragen ähnlich wie “schnellere MySQL -Importe”

Weitere verwandte Antworten zu “schnellere MySQL -Importe” auf Sql

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen