Read more

MySQL: How to dump single tables instead of a complete database

Emanuel
September 02, 2016Software engineer at makandra GmbH

Sometimes you want to test migrations with production or staging data. Dumping single tables makes sense if a complete dump would be to big.

mysqldump -u deploy_user -p application_production table1 table2 table2 > table1_table2_table2.sql.dump
Illustration UI/UX Design

UI/UX Design by makandra brand

We make sure that your target audience has the best possible experience with your digital product. You get:

  • Design tailored to your audience
  • Proven processes customized to your needs
  • An expert team of experienced designers
Read more Show archive.org snapshot

Hint: If a table has to many constraints, a complete dump could be more handy.


Further reading:

Posted by Emanuel to makandra dev (2016-09-02 13:30)