Hi,
I would like to know if there is any way of retrieving the information from my saved filter using a query on a direct connection to mysql db.
If I want to generate the information and result is below 1000 rows, this is the process:
query - > search for issues -> export button -> choose "Excel (current fields)"
The information will automatically be saved on my local folder.
Currently, we have an issue on exporting the information from my save filter if the result set is beyond 1000 rows.
To be more clear, details are as follows:
JQL: project = projectxyz AND issuetype = "Customer Incident" AND created >= -52w
Information I would like to retrieve based on the JQL:
Please advise if there is a way to retrieve the same result from my save filter. Otherwise, kindly let me guide me on creating the sql-query to be able to get the data.
By the way. I'm using JIRA 6.1.1
Jean Paul,
I agree with Nic that the SQL will not necessarily be straightforward (although I believe that the resolution date actually is available in the jiraissue table).
However, if you want to increase the max limit of 1,000 rows in your export, this may save you from having to use SQL at all:
Scott
Hi Scott,
Thank you for the references, we did try to increase the max limit but executing it overloads and affects the performance of JIRA and is not good for a production environment where we have a lot of users.
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.
Your JQL is fine, you're limited in the Excel download because it's resource heavy and can overload your server if you use it with a large data set
You should be thinking about why you want thousands of records (a human simply can't process that much data, so you must be looking for summaries or data slices and a far better option that random downloads of already obsolete information is to do the reporting in Jira)
The SQL is complex - Key, issue type, created data, summary, status, and resolution are all on the main table jiraissue, but
to get first response and resolved, you'll need to read the history changeitem and changegroup to establish them, as they're not necessarily stored in the database at all
for custom field 1 and 2you need to read customfieldvalue and customfield
found-in and severity are odd. They are probably custom fields (in which case, see above). Unless you meant "priority" and/or "affects version", in which case, you can read jiraissue for the priority again, but you'll be mucking around with nodeassociation and versions to get affects version
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Nic,
Thank you very much for the detailed response. I will map the fields and hopefully everything can be retrieved easily. Currently, I've seen the table jiraissue for the other fields. I will check the history change item and change group for the other custom fields.
One thing, before 6.1, pkey is being ised for JIRA issue ID. Any advise on how it can be extracted for JIRA 6.1 and above?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Try:
select p.pkey || '-' || ji.issuenum as issuekey,summary from jiraissue ji left join project p on p.id=ji.project limit 15;
You may need to use a different string concatenation operator/function, depending on your specific SQL dialect.
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.
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.