Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Sprint started by and Ended by details in database

Madhu Kiran Yalamanchili
Contributor
June 19, 2020

In Jira database, where do i find Sprint Started By and Sprint Ended By details?

In my instance for all agile reports like sprint report, BurdDown Chart, Velocity chart, i dont see values from Started By and Ended By

2 answers

1 accepted

1 vote
Answer accepted
YY Brother
Community Champion
March 31, 2022

SELECT from_unixtime(ae.TIME / 1000, '%Y-%m-%d'), cu.display_name, ae.ID, ae.`DATA`
FROM ao_60db71_auditentry ae
INNER JOIN app_user u ON u.user_key = ae.`USER`
INNER JOIN cwd_user cu ON cu.user_name = u.lower_user_name
WHERE ae.CATEGORY = 'SprintOpenClose'
AND ae.entity_class = 'SPRINT' AND ae.entity_id = 311
ORDER BY ae.TIME ASC;

 

NOTE: 311 refers to the sprint id.

0 votes
Mohamed Riza _ServiceRocket_
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 19, 2020

Hi @Madhu Kiran Yalamanchili 

This is present in the AO_60DB71_SPRINT table in the database. You have a column there for start date and completed date. The times are in epoch time, so you would need to convert this using a tool like https://www.epochconvert.com/. Of course you would not be able to tell which board the sprints are coming from, therefore you will need to join this with the AO_60DB71_RAPIDVIEW table. 

Madhu Kiran Yalamanchili
Contributor
June 21, 2020

I am not looking for Start Date and End Date, i am looking for Started by and Ended By. 

Please check attached screenshot.

image.png

Like YY Brother likes this

Suggest an answer

Log in or Sign up to answer
DEPLOYMENT TYPE
SERVER
TAGS
AUG Leaders

Atlassian Community Events