Project update

Rumceisz
Contributor
April 16, 2012

Hi All,

I am an admin in a JIRA instance of about 150 projects. We are about to migrate some projects, but to delete the unused one's. Do you know a feature (script, plugin, etc.) we could see for each project in a list when the projects were updated last time. I mean I would like to make a historically ranking according to the last update: with this ranking list we can decide which project could we delete or conversate with the appropriate project leaders.

Thanks in advance!

Rumi

1 answer

1 accepted

0 votes
Answer accepted
JamieA
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.
April 16, 2012

It would be easy as a groovy script, but probably I'd just use a bit of sql:

select project.pname, max(updated) from jiraissue
  inner join project on jiraissue.project = project.id
  group by project.pname
order by 2 desc

JamieA
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.
April 16, 2012

Using pgAdmin III for instance, or psql.

Rumceisz
Contributor
April 16, 2012

Hi Jamie,

where can we run a sql script? I mean we use psotgres

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events