Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can I use mysqldump to dump certain tables that start with common prefix?

share|improve this question

2 Answers

up vote 23 down vote accepted

Hehe, this is kind of a hack, but it works:

mysqldump -u USER -p DATABASE $(mysql -u USER -p -D DATABASE -Bse "show tables like 'PREFIX%'") > /tmp/DATABASE.out

Change the ALLCAPS words as needed.

share|improve this answer
nice hack, and it work PERFECTLY, thanks... – mabuzer Jun 1 '10 at 12:25
this other answer is a dupe, but it goes into a bit more depth, I think. stackoverflow.com/a/5269543/8047 – Yar Jul 21 '12 at 21:57

You can create backup.sh script:

BACKUP_DIR="/path/to/backups"

DB_HOST="domain.com"
DB_USER="user"
DB_PASS="pass"

PREFIX="phpbb"

TMP_LIST = mysql --host=$DB_HOST --user=$DB_USER --password=$DB_PASS -e "show databases;" | grep $PREFIX

# just get to database name column (may be $1, don't remember)
TMP_LIST = cat $TMP_LIST | awk '{print $2}'

# Getting dbs
mkdir $BACKUP_DIR/tmp
for db in $TMP_LIST ; do
    mysqldump --host=$DB_HOST --user=$DB_USER --password=$DB_PASS --opt $db > $BACKUP_DIR/tmp/$db.sql
    zip -mj $BACKUP_DIR/tmp/$db.sql.zip $BACKUP_DIR/tmp/$db.sql 2>&1
done

Hope it help.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.