当前位置:网站首页>MySQL imports and exports multiple libraries at one time

MySQL imports and exports multiple libraries at one time

2022-06-13 03:15:00 wks19891215

mysql -e "show databases;" -h xxx -u xxx -p xxx | grep -v "xx" | grep "yy" | xargs mysqldump -h xxx -ugaia_user -pxxx --databases > xxx.sql

export :

mysql -u root -p123 < xxx.sql

Streaming data : mysqldump -u root -p database_name  | mysql -h other-host.com database_name

 

原网站

版权声明
本文为[wks19891215]所创,转载请带上原文链接,感谢
https://yzsam.com/2022/02/202202280532253632.html