I keep getting this error in the Jira console. Running ver 8.4.1 and using SQL server 2014
The database collation 'SQL_Latin1_General_CP1_CI_AS' and table collation 'SQL_Latin1_General_CP1_CI_AS' are not supported by Jira
I have read several posts about the same message.
What is the fix?
Hi @Sabel Systems ,
this means that your database collation is not configured properly, you are using a Case Insensitive collation whereas Confluence only supports Case Sensitive as you can see here : https://confluence.atlassian.com/doc/database-setup-for-sql-server-9258.html#DatabaseSetupforSQLServer-2.Createadatabaseanddatabaseuser
You will need to ask your database admin to fix the database collation.
Let me know if this works,
--Alexis
Are there steps that someone could share to do this? I set the database up for this instance.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
If I run this command, it breaks JIRA when it tries to start:
ALTER DATABASE <database-name> COLLATE SQL_Latin1_General_CP1_CS_AS
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Sabel Systems ,
the clean way to do this is to do a full XML export in Confluence first, and then setup Confluence with a new database (with the correct collation) and import the data.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
The impact is that if you have 2 pages with the same title but different case, it will break stuff on your instance.
I would strongly recommend making sure the collation is correct before you go any further.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Okay. I created a brand new new database, ran the query specified:
ALTER DATABASE MyDatabseName COLLATE SQL_Latin1_General_CP1_CS_AS
Migrated my JIRA 8.4.1 instance from the internal database to new new database successfully
And I get the same exact result.
The database collation 'SQL_Latin1_General_CP1_CI_AS' and table collation 'SQL_Latin1_General_CP1_CI_AS' are not supported by Jira.
Why do I keep getting this error?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
If you just reimported the data on SQL Server, the database will keep its collation. Did you try to backup the data from Jira with the XML backup, then setup a new Confluence that points to the empty database, and import it using the Confluence wizard ?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thank you for the quick reply.
Yes. Here is the process I used.
BTW, this is JIRA and NOT Confluence
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Sorry, your post is tagged as "Confluence", did not realize it was for Jira. In this case, the correct collation is Latin1_General_CI_AI. You should setup a new empty database with this collation, then run the data import.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Sorry. I didnt realize that. So this is the correct query?
ALTER DATABASE jira_db COLLATE Latin1_General_CI_AI
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Yes it should be this query. I think for SQL Server you can also do this directly in the interface too.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.