Om grote hoeveelheden gegevens in InnoDB te importeren:
-
ingesteld in MySQL-configuratie
- innodb_doublewrite =0
- innodb_buffer_pool_size =50%+ systeemgeheugen
- innodb_log_file_size =512M
- log-bin =0
- innodb_support_xa =0
- innodb_flush_log_at_trx_commit =0
-
Direct toevoegen nadat de transactie is gestart:
SET FOREIGN_KEY_CHECKS =0;
SET UNIQUE_CHECKS =0;
AUTOMATISCH INSTELLEN =0;
-
Stel vlak voor het einde van de transactie in:
STEL UNIEKE_CHECKS =1 in;
SET FOREIGN_KEY_CHECKS =1;