direct jira database changes can not immediately take effect

fabby July 25, 2012

i want to auto release version using sql script.

so i set "RELEASED" field's value to 'true' in table "projectversion".

when i update RELEASED' value using sql script,it doesn't immediately takes effect.

the updated version will display 'released',only after some manually changes on "Versions" tab.

for example,i changed version "V1" 's released state using sql script."V1" still displays "unreleased" in UI.

but when i manually change the version "V2"'s version name(i think this manual action trigger the synchronizing between jira ui cache and the database ),then the version "V1"'s released state will be 'released'.

1 answer

1 accepted

2 votes
Answer accepted
Nic Brough -Adaptavist-
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
July 25, 2012

No. You can NOT use SQL to amend a Jira database while it is running.

It caches data, and has no way of knowing that you're doing the updates. You can irrepairably damage your installation.

You REALLY need to do the following IMMEDIATELY:

  • Stop Jira
  • Run the SQL to reverse your changes
  • Restart Jira
  • Re-index it
  • Run the integrity checker

In the longer term, you need to code something that uses the API, but I'd concentrate on undoing the damage you may have done already

Radu Dumitriu
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
July 25, 2012
Nic Brough -Adaptavist-
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
July 25, 2012

Yes. Somewhere near the top, in big red letters ;-)

Like Jira Admin likes this
Jobin Kuruvilla [Adaptavist]
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
July 25, 2012

Just to add on, releasing a version does more than just setting that value to true in the table. It also looks at unreleased issues in the release and prompts the user to move to a new release or resolve them.

It is wise to follow Nic's advise on coding something that uses the API.

fabby July 26, 2012

thanks for all your advisement!

Suggest an answer

Log in or Sign up to answer