When I dump a db from mysql, is there a way out by which I can remove the lines ENGINE=MyISAM AUTO_INCREMENT=528 ... , LOCK TABLES "controller_actions" WRITE; and UNLOCK TABLES; . Opening the db file and removing these lines would be extremely tedious as the database is such huge.
Any help is appreciated
I’m not sure why you would want to remove the
ENGINEandAUTO_INCREMENToptions; as far as I can tell there’s no way to remove just these options. If you want to remove the entireCREATE TABLEstatement, use the--no-create-infooption. To prevent theLOCK TABLEandUNLOCK TABLEcommands, use--skip-add-locks.