2
I am using mysqldump to export only my database data, but when exporting, it shows only one line with all the Inserts. Is it possible to make a registration insert per line? Ex:
INSERT INTO TABELA() VALUES();
INSERT INTO TABELA() VALUES();
2
I am using mysqldump to export only my database data, but when exporting, it shows only one line with all the Inserts. Is it possible to make a registration insert per line? Ex:
INSERT INTO TABELA() VALUES();
INSERT INTO TABELA() VALUES();
3
You can try this command:
mysqldump --extended-insert=FALSE
This answer was found at this link: https://stackoverflow.com/a/12439368/6762369
Browser other questions tagged mysql mysqldump
You are not signed in. Login or sign up in order to post.
Show, it worked.... Thank you.
– Roknauta
You’re welcome!!
– Carlos Silva