Hi,
I am trying to build a sql query where I can find subtask with associated jira bug. There can be multiple subtasks with different types of subtasks . Can someone please recommend appropriate pointers.
Thanks
WIll this JQL work for you ? I am running on Jira 5.0.4.
issuetype = sub-task and parent = <issue identifier>
It will display all the subtasks associated with the Jira <issue identifier>
You seem to be asking many questions about making SQL queries against the Jira database. If you haven’t seen the documentation for Jira’s database schema yet, you can find it at
https://developer.atlassian.com/display/JIRADEV/Database+Schema
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
The relationship between subtasks and parents are stored in the issuelink table. This table contains all the issue links, including blockers, duplicates, related issues, etc. For each entry in the issuelink table, you can tell what type of link it represents by looking at the LINKTYPE field.
The LINKTYPE field will contain a numeric ID. That ID is a key of the issuelinktype field. Since you’re interested in subtasks, you’ll be interested in the issuelinktype whose LINKNAME is “jira_subtask_link”.
That should be enough to get you started.
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.