Change column and table collation to utf8_bin in MySQL
Platform notice: Server and Data Center only. This article only applies to Atlassian products on the Server and Data Center platforms.
Support for Server* products ended on February 15th 2024. If you are running a Server product, you can visit the Atlassian Server end of support announcement to review your migration options.
*Except Fisheye and Crucible
Problem
This article provides instructions on how to update the supported collation utf8_bin for both the columns' and tables' in a database.
Diagnosis
Find the database, database tables, and database columns with collations different than the recommended utf8_bin
using the below queries. Then, take note of the ones returned for the next steps.
SELECT DEFAULT_COLLATION_NAME FROM information_schema.SCHEMATA S WHERE schema_name = '<database-name>' AND DEFAULT_COLLATION_NAME != 'utf8_bin';
SELECT * FROM information_schema.COLUMNS WHERE table_schema = '<database-name>' AND collation_name != 'utf8_bin';
SELECT * FROM information_schema.TABLES WHERE table_schema = '<database-name>' AND table_collation != 'utf8_bin';
Replace <database-name>
with the name of the database used by your JIRA application instance.
Resolution
Always back up your data before performing any modification to the database. If possible, try your modifications on a test server.
- Stop your JIRA application;
Run the below queries in the application database to alter the database default collation;
ALTER DATABASE <database-name> CHARACTER SET utf8 COLLATE utf8_bin;
Replace
<database-name>
with the name of the database used by your JIRA application instance.Disable MySQL's constraint checks, otherwise, it won't allow modifications on the tables;
SET foreign_key_checks = 0;
Alter the collation of a table with the below query;
ALTER TABLE <table-name> CONVERT TO CHARACTER SET utf8 COLLATE utf8_bin;
Replace
<table-name>
with the name of a table returned by the second query in the Diagnosis section.
If the above fails, use the below instead;ALTER TABLE <table-name> CHARACTER SET utf8 COLLATE utf8_bin;
If the query for tables set with wrong collation ran on the Diagnostics step returns more than one result, you can run the below steps to generate a set of queries for all affected tables in a file. The following is an example provided for UNIX platforms only.
After running the query for all affected tables, verify that the queries below now return no results;
SELECT * FROM information_schema.COLUMNS WHERE table_schema = '<database-name>' AND collation_name != 'utf8_bin';
SELECT * FROM information_schema.TABLES WHERE table_schema = '<database-name>' AND table_collation != 'utf8_bin';
If the above queries return any results, take note of the tables it returns and execute the below query, which will define the default collation for the table;
ALTER TABLE <table-name> DEFAULT CHARACTER SET utf8 COLLATE utf8_bin;
Revert the MySQL constraint checks for foreign keys with the below query;
SET foreign_key_checks = 1;