mysqlから必要なテーブル名を取得し、それらを使用してmysqlダンプパラメータを構築できます。
以下の例では、「someprefix」をプレフィックスに置き換えてください(例:「exam_」)。
SHOW TABLES
クエリは、テーブルの他のセットを見つけるために変更することができます。または、INFORMATION_SCHEMA
テーブルに対してクエリを使用して、さらに多くの基準を使用することもできます。
#/bin/bash
#this could be improved but it works
read -p "Mysql username and password" user pass
#specify your database, e.g. "mydb"
DB="mydb"
SQL_STRING='SHOW TABLES LIKE "someprefix%";'
DBS=$(echo $SQL_STRING | mysql -u $user -p$pass -Bs --database=$DB )
#next two lines untested, but intended to add a second excluded table prefix
#ANOTHER_SQL_STRING='SHOW TABLES LIKE "otherprefix%";'
#DBS="$DBS""\n"$(echo $ANOTHER_SQL_STRING | mysql -u $user -p$pass -Bs --database=$DB )
#-B is for batch - tab-separated columns, newlines between rows
#-s is for silent - produce less output
#both result in escaping special characters
#but the following might not work if you have special characters in your table names
IFS=$'\n' read -r -a TABLES <<< $DBS
IGNORE="--ignore_table="$DB"."
IGNORE_TABLES=""
for table in $TABLES; do
IGNORE_TABLES=$IGNORE_TABLES" --ignore_table="$DB"."$table
done
#Now you have a string in $IGNORE_TABLES like this: "--ignore_table=someprefix1 --ignore_table=someprefix2 ..."
mysqldump $DB --routines -u $user -p$pass $IGNORE_TABLES > specialdump.sql
これは、「bashで除外するすべてのテーブル」を取得することに関するこの回答の助けを借りて構築されました:https : //stackoverflow.com/a/9232076/631764
そして、いくつかのbashが使用されているテーブルのスキップに関するこの回答:https : //stackoverflow.com/a/425172/631764