How to update Jira title from database
Platform Notice: Data Center Only - This article only applies to Atlassian products on the Data Center platform.
Note that this KB was created for the Data Center version of the product. Data Center KBs for non-Data-Center-specific features may also work for Server versions of the product, however they have not been tested. 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
Summary
This article shows the steps to update the Jira title (⚙️ → System → GeneralConfiguration → Edit Settings → Title) directly from database.
Environment
Tested in 8.20.11 but should be applicable to any Jira 8 and 9 version
Solution
It is possible to update the Jira title from the database, follow below steps:
Always back up your data before making any database modifications. If possible, test any alter, insert, update, or delete SQL commands on a staging server first.
Stop JIRA. Open the database and run the following :
Run this SQL to fetch the id from propertyentry table:
1
select * from propertyentry where property_key='jira.title';
3. Please take note of the *id* values from step 2
4. Run this SQL to fetch the existing Jira title.
1
2
select * from propertystring where id=xxxxx;
(i) Replace xxxxx with the *id* from step 2
5. Run this SQL to update the new Jira title.
1
2
UPDATE propertystring SET propertyvalue='<New-String-value>' WHERE id=xxxxx;
(i) Replace xxxxx with the *id* from step 2
6. Start JIRA
Was this helpful?