-
-
Save Marcio861/ca136fd4e7ac552ceab4e28fc3bb2027 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Convert a MDB file (Access) to SQL | |
# Needs mdbtools[http://mdbtools.sourceforge.net/] | |
# run 'aptitude install mdbtools' on Debian/Ubuntu | |
# Created by Álvaro Justen <https://github.com/turicas> | |
# License: GPLv2 | |
mdb=$1 | |
sql=$2 | |
if [ -z "$2" ]; then | |
echo 'This script convert a MDB file to SQL file. You need to specify the name of both' | |
echo "Usage: $0 <mdb_file> <sql_file>" | |
exit 1 | |
fi | |
if [ -z "$(which mdb-tables)" ]; then | |
echo 'You need mdbtools installed.' | |
echo 'Learn more at http://mdbtools.sourceforge.net/' | |
echo 'If you use Debian/Ubuntu, just execute:' | |
echo ' sudo aptitude install mdbtools' | |
exit 2 | |
fi | |
echo "" > $sql | |
for table in $(mdb-tables $mdb); do | |
echo "DROP TABLE \`$table\`;" >> $sql | |
done | |
mdb-schema $mdb >> $sql | |
sed -i.bak 's/Long Integer/INT(11)/g; s/Text /VARCHAR/g; s/\[/`/g; s/\]/`/g' $sql && rm $sql.bak | |
for table in $(mdb-tables $mdb); do | |
mdb-export -I mysql $mdb $table >> $sql | |
done | |
sed -i.bak '/^-\{2,\}/d; s/DROP TABLE /DROP TABLE IF EXISTS /' $sql && rm $sql.bak |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment