JIRA Isse Transition details from DB

Vishnukumar Vasudevan
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
June 9, 2013

Hi,

Would like to generate reports based on Issue transitions from Database.

We use JIRA 5.1.3 along with Oracle 11g. Any idea which table we should look for ?

For example, need to know who moved an issue from one status to another one and when.

Thanks, Vishnu

2 answers

1 accepted

0 votes
Answer accepted
Teck-En
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
June 9, 2013

Hey Vishnu, just in case you haven't check on this documentation which has some example queries which you may find it useful: https://confluence.atlassian.com/display/JIRACOM/Example+SQL+queries+for+JIRA#ExampleSQLqueriesforJIRA-FindIssuesAffectedbyaGivenTransitioninaSpecificTimeRange

0 votes
Onkar Ahire
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.
June 9, 2013

You can use ChangeItemBeans to get by field like Assignee, Status, etc.. like this kind of transactions.

e.g.

List<ChangeItemBean> changeItemBeans= changeHistoryManager.getChangeItemsForField(issue, "assignee");

Cheers

Onkar Ahire

Suggest an answer

Log in or Sign up to answer