Retrieval of Time log data

Pushpkant February 19, 2013

I want to get details of the time logged for an issue. My Requirement is, If an issue is assigned to 3 users, then I want Time Log details for each user in that particular issue.

Can anyone please help me how to get this data?

2 answers

1 accepted

1 vote
Answer accepted
Marcus Silveira
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
February 19, 2013

Hi,

I believe you could get this information running a query on your JIRA database like the following

select * from worklog 
where issueid in (select id from jiraissue where assignee in ('user1','user2','user3')) 
  and author in ('user1','user2','user3')

Hope this helps,

Marcus

Pushpkant February 19, 2013

Thanks Marcus... I want detail on which status I logged the time. Do you know any table from where I can get those details. Jiraissue Table has workflow_id, but can we get the workflow_id name?

0 votes
Michael Blake February 19, 2013

you can also use the workload piechart gadget to see the time.

Pushpkant February 19, 2013

Hi Michael,

But it will not give me details about each Jira Issue vs Assignee.

Suggest an answer

Log in or Sign up to answer