Good Morning,
I need to get the time allocated by user and project, filtering by dates.
How do I get it through an sql query?
The imputed time table is "worklog", but I need to cross the Author with the username, and the TIMEWORKED in hours.
Thank you very much,
Greetings from Spain!
Eve
Alternatively you can use the SQL for JIRA Driver which is easier and lesser risks than accessing to the JIRA native database. Furthermore, since the 3.1 version, the users' worklogs are supported in the Data Analysis console so you can summarize and filter users' work logs with drag&drop, view results as charts, etc.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I have the following:
select
jira.cwd_user.DISPLAY_NAME USUARIO, jira.customfieldvalue.TEXTVALUE CENTRO_DE_COSTE, round(jira.worklog.timeworked/3600,2) Horas
from
jira.worklog ,
jira.cwd_user,
jira.jiraissue,
jira.customfieldvalue
where
jira.cwd_user.user_name = jira.worklog.author and
jira.jiraissue.id = jira.worklog.issueid and
jira.customfieldvalue.issue = jira.jiraissue.id
and
startdate > '07/06/15'
But I need to get the total time per person and date.
image2016-11-17 9:40:43.png
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.