I use the mysqldump tool to create dumps of my database, e.g.
mysqldump database > database.sql
Despite having added the option ‘–lock-tables=FALSE’, the .sql file contains lines like:
LOCK TABLES "tableXYZ" WRITE;
UNLOCK TABLES;
Is it possible to filter out these lines before they are written into the .sql file?
1 Answer