Export and import all Mysql database except schema
Export All Database
Create export_db.sh
MYSQL_USER=root
MYSQL_PASS=rootpassword
MYSQL_CONN="-u${MYSQL_USER} -p${MYSQL_PASS}"
#
Collect all database names except for
mysql, information_schema, and performance_schema
#
SQL="SELECT schema_name FROM info...
a-ndy.dev1 min read