Dear All,
we have a typical problem which involves all the admins of very big Jira instances.
We have more than 1600 projects in our instance and we use to find projects which are inactive for more than a year. The problem is that the users, project leads don't inform us when they finish working in a project or even don't start using a Jira project.
Is there a script or something which we could sort all the projects by the last update with? It would be very helpful for us!
Many thanks for your hints!
Best Regards,
Rumi
Hi Rumceisz,
The SQL query below lists all the projects in order or the last issue update that occured.
Maybe this can be of some help?
SELECT DISTINCT i.PROJECT, MIN(i.UPDATED) as 'Last Updated', p.pname FROM jiraschema.jiraissue i INNER JOIN jiraschema.project p ON p.ID = i.PROJECT GROUP BY i.PROJECT, p.pname ORDER BY MIN(i.UPDATED) ASC, i.PROJECT, p.pname
Cheers
Bhushan
Hi Rumceisz,
Please accept and vote up if you found the answer helpful :)
Cheers
Bhushan
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I can't help thinking it should be max(i.UPDATED) for the last time an issue was updated?
MySQL:
SELECT DISTINCT i.PROJECT, MAX(i.UPDATED) as 'Last Updated', p.pname
FROM jiraapp2.jiraissue i
INNER JOIN jiraapp2.project p
ON p.ID = i.PROJECT
GROUP BY i.PROJECT, p.pname
ORDER BY MAX(i.UPDATED) desc, i.PROJECT, p.pname
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi.
We had some of the same challenges and developed a plugin you might want to take a closer look at:
https://marketplace.atlassian.com/plugins/com.tauron.project-activity
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
thanks for wasting my time your link goes no where really appreciate you wasting my time thanks i look forward to more of my time being wasted by you
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Corey
As the post is from 2013 it can happen that Links get outdated. It seems like the plugin Raymond was referring to moved vendor or it's name. No need to panic. :)
Check if this might help you https://marketplace.atlassian.com/apps/1210777/latest-activity-report-for-jira?hosting=server&tab=overview
Cheers
Niklas
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.
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.