If I run a JQL query to bring back the Rank of an issue, I am getting a different value to the value obtained by running an SQL query directly on the database meaning issues in my spreadsheet appear in a different order to how they appear in JIRA. Am I missing a join somewhere?
For example, in JQL the rank for issue XXX-650 is 4597.
If I query the database directly with the following SQL query, I get 5660.
SELECT public."AO_60DB71_ISSUERANKING"."ID" FROM public."AO_60DB71_ISSUERANKING", public.jiraissue WHERE public.jiraissue.pkey = 'XXX-650' AND public."AO_60DB71_ISSUERANKING"."ISSUE_ID" = public.jiraissue.id
Is the ID of the ISSUERANKING table the Rank value used by JIRA? From other answers, I think so. In the database, if I look for the issue with the Rank 4597, it is a completely different issue (of course).
Any guidance would be much appreciated.
Hi Chris,
In the latest versions of Jira Agile Rank became a custom field.
So you might need to take a look at the custom fields tables in your database.
Just an idea.
Best regards,
Peter
Maybe this link can give you a headstart : https://confluence.atlassian.com/display/AGILEKB/How+to+find+issues+from+non-started+sprints
Best regards,
Peter
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.