Backup by mysqldump line by line

2

I am using mysqldump to export only the data from my database, but when exporting, it shows only one line with all the inserts. Is it possible to do one record insert per line? Ex:

INSERT INTO TABELA() VALUES();
INSERT INTO TABELA() VALUES();
    
asked by anonymous 17.10.2016 / 22:26

1 answer

3

You can try this command:

mysqldump --extended-insert=FALSE 

This response was found at this link: link

    
18.10.2016 / 02:08