dump

Post

Posts tagged as "dump"

1 comment   |   MySQL, SQL
The right way to restore mysql dump with InnoDB tables

The right way to restore mysql dump with InnoDB tables

Add this to the beginning of dump SET AUTOCOMMIT = 0; SET FOREIGN_KEY_CHECKS=0; and this to the end SET FOREIGN_KEY_CHECKS = 1; COMMIT; SET AUTOCOMMIT = 1;