Write down the project's settings (schemes etc), then delete the project (which will kill all the issues as well) and then create it again with the same short code.
For database manipulation, delete all the issues in the UI first, stop Jira, get a backup (although this is unlikely to cause a fault), open up the "project" table and change the pcounter to 1 (That's from memory - it might be 0, you can check this by creating a new empty project and reading the pcounter for that from the database to confirm it)
Thanks!
It's just a simple SQL then!! :)
update project set pcounter = 0 where pkey = 'PROJ'; commit;
DB manipulation seems to be the easiest option, however it's better to test it on a test environment first.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Definitely test it :-) I prefer the db change as well myself, because I'm lazy and don't want to have to put all the schemes back.
Just make sure you have Jira offline when you do it. Project counter keys are one of the things it almost always caches, so if it's running when you make the change, you could see it wiped out by the cache.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You may do it without restarting JIRA instance by using script runner plugin and this piece of groovy:
import com.atlassian.jira.ComponentManager
ComponentManager cm = ComponentManager.getInstance()
def pm = cm.getProjectManager()
pm.refresh()
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi, I'm creating a new Project and I need it's starts the counter on 31000 and no 0, how can I modify this? I'm using Jira server and SQL Server 2012 Regards
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
See above - Sameera has given you the SQL you need for that hack.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Nic br, thanks for your quick response Where should I execute that query and with values should I change to apply it on my db?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Use whatever tool you are most comfortable with when editing data in a SQL Server database. Set the pcounter to the number you want to start at -1
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Nic Brough [Adaptavist] , sorry. I figured out myself how to fit it to my scenario Regards for your help
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello,
This thread is a bit old but this KB is new and may help someone.
https://confluence.atlassian.com/display/JIRAKB/How+to+reset+the+project+counter+after+moving+issues
When there are moved issues another table needs to be changed, the moved_issue_key.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks for this
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi all,
actually you can reset the project key when using scriptrunner. Here is the snippet, but be careful when using it ;)
https://bitbucket.org/janszczepanski/workspace/snippets/oBkRLy
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Um, no, that could easily fail, as you've not taken account of the caches. I don't think SR can even clear the cache you would need to hit.
Your script could only work safely if you stopped Jira, restarted it, run the script before anyone starts using Jira projects, then stop and restart it again.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Nic Brough -Adaptavist- Is that mean we can accomplish this by following the 'SR' if we stopped Jira and perform the SR actions?
Thanks!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
No. If you stop Jira, you can't run scriptrunner scripts.
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.
Hello guys, just to give more information about the procedure given by Sameera Shaakunthala [inactive] Feb 20, 2013:
update project set pcounter = 0 where pkey = 'PROJ'; commit;
Speccialy for who doesn't know so much about Linux commands and has an enviroment hosted on Linux machine:
1-First you have to stop jira service on Linux machine:
~$ sudo service jira stop
2-Confirm if the service is really inactive/stopped:
~$ service jira status
3-A line like this should be appear:
Active: inactive (dead) since...
4-Then, let's logon into mysql (here the user for mysql is 'root'):
mysql -u root -p
5-On command line should appear 'mysql>', where you'll type the following command, just attention that 'jiraservicedesk' is the name for the Jira Service Desk Database:
USE jiraservicedesk
6-Finishing you'll type the procedure given by Sameera:
update project
set pcounter = 0
where pkey = 'PROJ';
7-This message will appear on screen:
Query OK, 1 row affected (0.01 sec)
Rows matched: 1 Changed: 1 Warnings: 0
8-This last command is just to start jira service again:
~$ sudo service jira start
For Linux commands, these websites helped me so much:
Thanks Sameera and all!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi, I have tried to perform this proceedure again on another JIRA instance but I get that the object name "project" is invalid. Any idea?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Check the syntax guide for your database.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
For those who are not SQL experts (like me) here is the proceedure I followed:
O.S.: Windows Server 2012 R2
SQL Server version: 11.0.60.20 (2012)
JIRA schema: "jiraschema"
IMPORTANT: As Nic told before, you must stop JIRA and perform a backup before peforming these changes
20160914_JIRA_ChangeKeyNumber.PNG
(i) It´s was translated by me, so some names can be different
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.