mysqldump data only

Lizard picture Lizard · Feb 24, 2011 · Viewed 288.1k times · Source

I am looking for the syntax for dumping all data in my mysql database. I don't want any table information.

Answer

matei picture matei · Feb 24, 2011
mysqldump --no-create-info ...

Also you may use:

  • --skip-triggers: if you are using triggers
  • --no-create-db: if you are using --databases ... option
  • --compact: if you want to get rid of extra comments