The Atlassian Community Forums are currently in read-only mode. We will be relaunching on a new platform on September 22 (read more here). We apologize for the extended downtime. For concerns or questions, please email communitymanagers@atlassian.com. See you on the other side, on the new Atlassian Community Forums! :)

×

Forums

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

Original story points

talha Parvaiz
October 20, 2020

Hi,

I am trying to locate which table has Original story points

It seems like customfield and customfieldvalue tables do not have the data. I was able to extract other fields like Planned End, Planned Start, etc., from these tables and that's why I am confident that these tables do not contain Original story points for our implementation.

Please advise

Thanks

1 answer

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

1 vote
Nic Brough -Adaptavist-
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 Champions.
October 21, 2020

I would strongly recommend that you stop reading the database, it's the single worst way you can possibly get data out of Jira.

If you insist on doing this badly, I'll save you some time - it's on jiraissue, but you won't like the way it handles.  I'd strongly recommend using the REST API for whatever you're doing instead.

talha Parvaiz
October 21, 2020

which JiraIssue field has this information? I am unable to track it

 

Thanks again for your assistance

Nic Brough -Adaptavist-
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 Champions.
October 21, 2020

Have a look at the table - the field names are clear (mostly)

talha Parvaiz
October 22, 2020

found it

to_char(json_value(json_value,'$.original_story_points'), '9,999.99') as Original_Story_Pts
from jir.entity_property
where
Entity_name = 'IssueProperty'

 

Thanks for your assistance