Can you please provide the SQL to collect all information about issue, including comments, statuses, etc. we know the issue ID, looking for SQL which will take input as issueID, will return all information.
It is possible to use SQL for JIRA to perform the query you are asking for.
Ex:
select * from issues i inner join comments c on c.issueid = i.id inner join issuestatusdefinitions sd on i.statusid=sd.id where i.id=?
All the Issue fields (including custom fields) are covered by SQL for JIRA so you can join the rest of the issu tables in order to view all the data at a glance.
It's long, complex and clumsy. It can change with different versions, and I wouldn't even try to build a single querty that would get "everything" because it'll be in a dreadful format for you.
I would suggest taking a good hard look at why you are asking for this? I can pretty much guarantee that "read the raw database" is the worst possible way to do what you are trying to do.
If you insist though, then please see 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.
we want to import one particular issue from our backup database to production DB, not sure how much extra tables need to join to get all details.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You will need to join around 18 tables together, and the process is complex if you use SQL: Stop JIRA Take a full backup Ensure that you can build a working JIRA from that backup Run the SQL Restart JIRA Re-index it Test thoroughly Let users back in A far better option would be to export the xml from the backup, use "project import" in a temporary JIRA to import the missing issue.
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.