After changing the database to fix the collation and isolation level settings the admin interface still shows errors for both.
If i check them on the Database itself with the commands from the troubleshooting pages, both are set to the supported settings.
SELECT is_read_committed_snapshot_on FROM sys.databases WHERE name = 'jira';
Returns:
1
SELECT DISTINCT C.collation_name
FROM sys.tables AS T
INNER JOIN sys.columns C
ON T.object_id = C.object_id
WHERE collation_name IS NOT NULL;
Returns:
Latin1_General_CI_AI
But the JIRA Adminpage still says the settings are wrong.
Sebastian,
The settings are wrong even after a restart of jira?
You can change the transation isolation level easily but for the collation change atlassian recommends to create a new database with the right collation.
Thanks for your suggestions. Even after a restart both settings are marked as wrong.
I already created a new database with the right collation settings. I am sure its connected to the right database cause the old one is deleted and the sql querries above return the right values.
Is the result somehow chached in jira?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
When i had this problem, after changing the database parameters it was reflected correctly in jira.
Maybe you can check the following using some db frontend, i'm on a mac so i'm using dbeaver, but you can use enterprise manager as well
1. copy the jdbc connection string and connect to the same server, db, user and password from the frontend
2. execute the query inside that connection
3. check the collation of the objects
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.