Skip to content

Instantly share code, notes, and snippets.

@matt-bernhardt
Last active March 2, 2016 16:09
Show Gist options
  • Save matt-bernhardt/bb501504adb8dda4d20a to your computer and use it in GitHub Desktop.
Save matt-bernhardt/bb501504adb8dda4d20a to your computer and use it in GitHub Desktop.
A bash script to delete all tables from a MySQL database. Useful when your user connection has rights only at the table level, so dropping and recreating the database itself isn't an option.
#!/bin/bash
MUSER="$1"
MPASS="$2"
MDB="$3"
MHOST="$4"
# Detect paths
MYSQL=$(which mysql)
AWK=$(which awk)
GREP=$(which grep)
if [ $# -ne 4 ]
then
echo "Usage: $0 {MySQL-User-Name} {MySQL-User-Password} {MySQL-Database-Name} {MySQL-Host}"
echo "Drops all tables from a MySQL database"
exit 1
fi
TABLES=$($MYSQL -h $MHOST -u $MUSER -p$MPASS $MDB -e 'show tables' | $AWK '{ print $1}' | $GREP -v '^Tables' )
for t in $TABLES
do
echo "Deleting $t table from $MDB database..."
$MYSQL -h $MHOST -u $MUSER -p$MPASS $MDB -e "drop table $t"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment