Hello,
I need to export information about all issues in all groups.
Jira "Issue statistics" gadget in the dashboard provides the exact information I need, but I'm not able to export to xls.
I searched thru jira mysql db, but was not able to identify the tables that I need.
The information I need is like this:
Groupname Total issues
Groupname_1 256
Groupname_2 298
Groupname_3 1562
........
Can anyone help?
Well, may be I'm missing something, but it is not working for me.
I changed the cfname to the name of my customfield:
SELECT b.customvalue as 'Option', COUNT(a.ID) as 'Number'
FROM customfieldvalue a JOIN customfieldoption b ON a.stringvalue = b.ID
WHERE a.CUSTOMFIELD = (select ID from customfield WHERE cfname = 'Assigned Group') GROUP BY a.STRINGVALUE;
Gods I hate SQL shorthand, makes it really hard to read.
I tihnk you're going in the right direction, but I think the problem is that the custom field is a group-picker, not an option list, so you should be reading groups instead of options.
I should check that, but I don't have a JIRA to hand at the moment (yay, trains with intermittent wifi)
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.
I also forgot to mention that we are using JIRA 6.2.
I presume Stefan's select is for more recent JIRA version.
Regards,
Todor Kostadinov
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
No, he's done two things:
1. Made it look up the field name, so you don't have to work out the ID of the custom field manually.
2. Added SQL shorthand, which makes it easier to type and a lot harder to read.
Both your SQL and his work perfectly for most versions of JIRA - I'd actually say version 4.0 through to 7.4, as I don't remember the customfield tables changing since 4.0
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I have written it for JIRA 7.3 but now tried it in JIRA 6.1 too.
Working perfectly. And will work for 6.2 too.
Make sure you enter your customfieldname to cfname.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Sorry Todor, Nic is right.
Didnt recognized you mentioned that its a grouppickerfield.
They really have no options in customfieldoptions table.
So i did same as you and joined only the customfieldtable to be able too simply enter the customfield name.
SELECT customfieldvalue.STRINGVALUE as 'Group', COUNT(customfieldvalue.ID) as 'Number' FROM customfieldvalue JOIN customfield ON customfieldvalue.CUSTOMFIELD = customfield.ID WHERE customfield.cfname = 'Jira-Groups' GROUP BY customfieldvalue.STRINGVALUE
This time without shorthand^^
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
SELECT b.customvalue as 'Option', COUNT(a.ID) as 'Number' FROM customfieldvalue a JOIN customfieldoption b ON a.stringvalue = b.ID WHERE a.CUSTOMFIELD = (select ID from customfield WHERE cfname = 'YOURCUSTOMFIELDNAME') GROUP BY a.STRINGVALUE;
This is a little bit more clean.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Well,
I just found the table I need:
SELECT STRINGVALUE, COUNT(*) FROM customfieldvalue
WHERE CUSTOMFIELD = 'Assigned group custom field number'
GROUP BY STRINGVALUE;
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Sorry,
forgot to mention that "Assigned group" is custom field - Group Picker (single group).
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.