ホームページ >データベース >mysql チュートリアル >MySQL8で文字セットを一括変更するスクリプトの書き方
下位バージョンから MySQL 8 に移行した後、文字セットの問題により、照合順序の不正な混合 (utf8mb4_general_ci,IMPLICIT) および (utf8mb4_0900_ai_ci,IMPLICIT) エラーが発生することがあります。このとき、オブジェクトの文字セットは変更されました。
change_database_characset.sql
select concat('alter database ',schema_name,' default character set utf8mb4 collate utf8mb4_0900_ai_ci;') from information_schema.schemata where schema_name not in ('sys','mysql','performance_schema','information_schema') and lower(default_collation_name) in ('utf8mb4_general_ci','utf8_general_ci');
呼び出し:
/home/mysql/mysql-8.0.16-linux-glibc2.12-x86_64/bin/mysql -uroot -h20.0.0.18 -P3306 -p70n6w+1XklMu -N < change_database_characset.sql > change_database_characset_result.sql /home/mysql/mysql-8.0.16-linux-glibc2.12-x86_64/bin/mysql -uroot -h20.0.0.18 -P3306 -p70n6w+1XklMu -f < change_database_characset_result.sql > change_database_characset_result.out 2>&1
change_table_characset.sql
select concat('alter table ',table_schema,'.',table_name,' default character set utf8mb4 collate = utf8mb4_0900_ai_ci;') from information_schema.tables where table_schema not in ('sys','mysql','performance_schema','information_schema') and table_type='BASE TABLE' and lower(table_collation) in ('utf8mb4_general_ci','utf8_general_ci');
呼び出し:
/home/mysql/mysql-8.0.16-linux-glibc2.12-x86_64/bin/mysql -uroot -h20.0.0.18 -P3306 -p70n6w+1XklMu -N < change_table_characset.sql > change_table_characset_result.sql /home/mysql/mysql-8.0.16-linux-glibc2.12-x86_64/bin/mysql -uroot -h20.0.0.18 -P3306 -p70n6w+1XklMu -f < change_table_characset_result.sql > change_table_characset_result.out 2>&1
change_column_characset.sql
set group_concat_max_len=10240; select concat(c1,c2,';') from (select c1, group_concat(c2) c2 from (select concat('alter table ',t1.table_schema,'.',t1.table_name) c1,concat(' modify ','`',t1.column_name,'` ',t1.data_type, if (t1.data_type in ('varchar','char'),concat('(',t1.character_maximum_length,')'),''), ' character set utf8mb4 collate utf8mb4_0900_ai_ci',if(t1.is_nullable='NO',' not null',' null'),' comment ','''',t1.column_comment,'''') c2 from information_schema.columns t1, information_schema.tables t2 where t1.table_schema=t2.table_schema and t1.table_name=t2.table_name and t2.table_type='BASE TABLE' and lower(t1.collation_name) in ('utf8mb4_general_ci','utf8_general_ci') and t1.table_schema not in ('sys','mysql','performance_schema','information_schema')) t1 group by c1) t;
呼び出し:
リーリー以上がMySQL8で文字セットを一括変更するスクリプトの書き方の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。