(SSH) How to backup/restore just some table?
Posted by: basketmen
Posted on: 2008-04-21 12:29:00
Hi guys, i know how to backup and restore the entire mysql using ssh in wiki
http://wiki.dreamhost.com/Category:Backup
http://wiki.dreamhost.com/Restore_MySQL
to backup
mysqldump --opt -uusername -ppassword -h yourMySQLHostname dbname > output.sql
to restore
mysql -u dbuser -p -h dbhost.yoursite.com dbname < /path/to/backup.sql
but how to backup/restore just some table in the mysql using ssh??
what is the command to do that??? there is no instruction in wiki