Sprint start and end date are IDs

Ian Cockcroft
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
October 12, 2018

Hi guys, I’m trying to bring in the sprint start and end date from AO_60DB71_SPRINT in a SQL statement.

The date looks like an ID.

Any idea how, where I can get the actual date? How to use the IDJIRA Capture.PNG

2 answers

1 accepted

1 vote
Answer accepted
Daniel Eads
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
October 12, 2018

Hi Ian,

The dates are actually in Unix Epoch format. There are a myriad of tools available for converting them into a human-readable format, but here are a couple that might be useful.

Cheers,
Daniel

0 votes
Ian Cockcroft
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
October 14, 2018

Thanks Daniel,

I did find this

    TO_CHAR(TO_DATE('1970-01-01','YYYY-MM-DD') + s.start_date / 86400000,'YYYY-MM-DD')  "SPRINT START DATE",

 

seem to work

cheers

Suggest an answer

Log in or Sign up to answer