阿里云的数据默认是物理备份,而且下载下来要用它们的工具才能解压。恢复到本地可以参考官网说明:
https://help.aliyun.com/knowledge_detail/41817.html
http://www.cnblogs.com/ilanni/archive/2016/02/25/5218129.html
更改所有表的字符集:
for n in `mysql -uroot -ppassword -e “show tables from xingou”| sed ‘1d’|grep -v “Warning”` ;do mysql -uroot -ppassword -e “ALTER TABLE xingou.$n CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci;”; done
原文链接:阿里云的RDS数据库本地恢复及命令行更改所有表的字符集,转载请注明来源!