Hi there, I am trying to do a db copy over a network using the following command
but whatever I put in the 'other_host' part, whether it is an IP address or a valid domain name, I get unknown Mysql server host error.
Another question I would like to ask is, how would we copy a specific table instead of the whole database using similar command ?
Thanks
Code:
mysqldump --opt db_name | mysql -h 'other_hostname' db_name
but whatever I put in the 'other_host' part, whether it is an IP address or a valid domain name, I get unknown Mysql server host error.
Another question I would like to ask is, how would we copy a specific table instead of the whole database using similar command ?
Thanks