mysqldump exports only one table
I was using mysqldump to export the database, like this: mysqldump -u root -ppassword my_database > c:\temp\my_database.sql Somehow, it only exports one table. Is there something I'm doing wrong? try this. There are in general three ways to use mysqldump— in order to dump a set of one or more tables, shell> mysqldump [options] db_name [tbl_name ...] a set of one or more complete databases shell> mysqldump [options] --databases db_name ... or an entire MySQL server—as shown here: shell> mysqldump [options] --all-databases If you are dumping tables t1, t2, and t3 from mydb mysqldump -u... -p...