Forums

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

Export Sprint details into a CSV/XML from JIRA

rashmi February 9, 2015

hi

How can I export Sprint details (like rapidviewid, name , start date,end date) etc. into a CSV/XML file from JIRA UI?

Please help

 

Thanks

1 answer

0 votes
cgauterio
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
April 7, 2015

Hi there,

I am afraid that's not possible just yet. My suggestion is that you export this information via CSV file from the database. For example:

select "AO_60DB71_RAPIDVIEW"."NAME", "AO_60DB71_SPRINT"."NAME", to_timestamp("START_DATE"::bigint/1000) AS "START_DATE", to_timestamp("END_DATE"::bigint/1000) AS "END_DATE" 
  from "AO_60DB71_SPRINT", "AO_60DB71_RAPIDVIEW"
 where "AO_60DB71_RAPIDVIEW"."ID" = "AO_60DB71_SPRINT"."RAPID_VIEW_ID";

This is done using PostreSQL, and it might need some ajustments for other database.

Cheers,

Clarissa.

Suggest an answer

Log in or Sign up to answer