1.
mysqldump -u root -p database_name > db_backup.sql2. somehow get db_backup.sql to the machine where you want to dump, and make sure you can see db_backup.sql from
ls3.
mysql -u root -p4.
use database_you_want_to_dump_name5.
source db_backup.sql6.
show tables;Yay!
source
No comments:
Post a Comment