Skip to content

Instantly share code, notes, and snippets.

@lyoshenka
Forked from jasny/mysql_splitdump.sh
Created January 26, 2013 20:53
Show Gist options
  • Save lyoshenka/4644543 to your computer and use it in GitHub Desktop.
Save lyoshenka/4644543 to your computer and use it in GitHub Desktop.
#!/bin/bash
####
# Split MySQL dump SQL file into one file per table
# based on http://blog.tty.nl/2011/12/28/splitting-a-database-dump
####
if [ $# -ne 1 ] ; then
echo "USAGE $0 DUMP_FILE"
fi
csplit -s -ftable $1 "/-- Table structure for table/" {*}
FILE=`ls -1 table* | tail -n 1`
csplit -b '%d' -s -f$FILE $FILE "/40103 SET TIME_ZONE=@OLD_TIME_ZONE/-1" {*}
mv table00 head
mv ${FILE}1 foot
for FILE in `ls -1 table*`; do
NAME=`head -n1 $FILE | cut -d$'\x60' -f2`
cat head $FILE foot > "$NAME.sql"
done
rm head foot table*
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment