我正在尝试将数据库从一台服务器复制到另一台服务器
mysqldump -u<source_db_username> -p<source_db_password> -h<source_db_ip_address> source_database_name
| mysql -u<target_db_username> -p<target_db_password> -h<aws_rds_endpoint> <aws_rds_db_name>;
但是我得到了
You have an error in your SQL syntax; check the manual that corresponds to your MySQL server
version for the right syntax to use near 'mysqldump -u<source_db_username> -p<source_db_password>
-h<source_db_ip_address> source_database_name ' at line 1
答案 0 :(得分:0)
我不应该在复制时使用数据库我只需要引用mysql位置来使用它,不应该使用';'在命令结束时它现在正在工作。