Which table connect the agile boards and projects in jira database?
What connects both these- I need to find the projects and corresponding agile boards
This gives the agile board details
SELECT [CARD_COLOR_STRATEGY]
,[ID]
,[KAN_PLAN_ENABLED]
,[NAME]
,[OWNER_USER_NAME]
,[SAVED_FILTER_ID]
,[SHOW_DAYS_IN_COLUMN]
,[SPRINTS_ENABLED]
,[SPRINT_MARKERS_MIGRATED]
,[SWIMLANE_STRATEGY]
,[OLD_DONE_ISSUES_CUTOFF]
,[SHOW_EPIC_AS_PANEL]
FROM [dbo].[AO_60DB71_RAPIDVIEW]
GO
This is for projects
SELECT [ID]
,[pname]
,[URL]
,[LEAD]
,[DESCRIPTION]
,[pkey]
,[pcounter]
,[ASSIGNEETYPE]
,[AVATAR]
,[ORIGINALKEY]
,[PROJECTTYPE]
FROM [dbo].[project]
GO
Hi,
Can you please share how did you achieve the amount of issues by sprint by issue type?
Hi Diego,
as far as I know you will not get this number in a gadget on your dashboard or with standard filter possibilities.
I know only two ways to get such information:
...
it just came to me that there is a third option if you use JIRA Software (JIRA Agile):
hope that helps
Benjamin
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Benjamin, thanks for the Structure mention!
@Diego Ambuhl, with Structure you can group by Sprint and then Issuetype, then add story points and sub-issue count columns to get something like this, and you can put it on your dashboard:
image2016-9-20 21:25:41.png
Any number and time columns you add can also be aggregated, and you can group by most JIRA fields.
So you can also make a dashboard report showing the current workload of your team (insert unresolved issues, group by assignee, add story point or estimate columns).
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.