Hi all,
I have installed SQL driver for JIRA and now I am able to perform advanced search using SQL.
Two questions:
Thanks,
Aquarius.
Thank you Pablo
Do you by chance have an SQL query for issues added to the sprint after it started?
Thx,
Aquarius.
Not yet, but I'm working to extend the SQL for JIRA - Data Analysis console to Agile, so it will possible to analyze Agil boards data out-of-the-box in a very powerful and friendly way to answer to question like this....
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thank you very much Pablo,
but when I run
issues in sql(" select i.key from issues i inner join issuecomments c on c.issueid=i.id where i.jql= 'reporter=currentUser()' group by i.key having count(*) >= 5 ") |
in issue navigator I get
Field 'issues' does not exist or you do not have permission to view it.
What is wrong?
Thanks in advance,
Aquarius.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
It is a typo: issues ( plural ) is not supported in JQL. Use please:
issue in ...
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Both questions seems to be related and are supported in SQL for JIRA Driver
Staring with your second question, the short answer is YES.
The ISSUES table has a special column named JQL. You have to use it as input to populate the ISSUES table with the data. Example, you might want to get your reported issues which have generated certain amount of debate/comments with threshold 5 (at least 5 comments)
select i.key as "Issue", count(*) as "Comments" from issues i inner join issuecomments c on c.issueid=i.id where i.jql='reporter=currentUser()' group by i.key having count(*) >= 5
copy and paste the query above in the SQL console and perform it to see the results.
In regard of your first question, any SQL for JIRA query can be converted back into a JQL by using the built-in sql predicate. Example:
issues in sql(" select i.key from issues i inner join issuecomments c on c.issueid=i.id where i.jql='reporter=currentUser()' group by i.key having count(*) >= 5 ")
The JQL above can be saved as JIRA filter: "Top commented issues" and the use it as any other regular saved filter in JQL by using the filter keyword:
filter="Top commented issues"
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.