When I run the following mysqldump command, it groups the INSERT's together.
mysqldump --user=username --password=password --host=localhost database | gzip > /parth/to/folder/backup.sql.gz
E.g:
INSERT INTO tbl_name VALUES (1,2,3), (4,5,6), (7,8,9)
This is great for space saving but makes it difficult for me to import a 3GB sql file. I have a script that uploads a large SQL file in parts. It breaks up the lines so that the server/page doesn't time out.
What I'd prefer is this:
INSERT INTO tbl_name VALUES (1,2,3);
INSERT INTO tbl_name VALUES (4,5,6);
INSERT INTO tbl_name VALUES (7,8,9);
Is that possible?