-
-
Save YogSottot/d7f0436c0bc31afbca8270fb2ec2cfe9 to your computer and use it in GitHub Desktop.
Shell script to change and convert mysql databases charset and collate.
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 | |
database='database' | |
user='user' | |
pass='pass' | |
charset='utf8mb4' | |
collate='utf8mb4_unicode_ci' | |
echo "Changing charset of database: $database" | |
mysql -u $user -p$pass $database -s -e "ALTER DATABASE $database CHARACTER SET = $charset COLLATE = $collate;" | |
for table in $(mysql $database -s --skip-column-names -e 'show tables') | |
do | |
echo '' | |
echo "Changing charset of table: $table" | |
mysql -u $user -p$pass $database -s -e "ALTER TABLE $table CHARACTER SET $charset COLLATE $collate" | |
echo "Converting charset of table: $table" | |
mysql -u $user -p$pass $database -s -e "ALTER TABLE $table CONVERT TO CHARACTER SET $charset COLLATE $collate" | |
done | |
echo '' | |
echo 'Conversion done!' | |
echo '' | |
echo 'Optimizing tables...' | |
echo '' | |
mysqlcheck -u $user -p$pass $database --auto-repair --optimize | |
echo '' | |
echo 'Done! Have a nice day! ;)' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment