As we re going to update an external system with the according JIRA key (and afterwards get the vice-versa update updating the JIRA issues) we have to get a list with all issues which have a value for
select * from customfield where CFNAME = 'HP OpenView Type' OR CFNAME ='HP OpenView ID';
The export should contains these both CFNAME fields (combined primary key) and the according JIRA issue ID.
The final query will directly run against the JIRA DB, the import job from external will be done manually first.
SELECT p.pkey || '-' || ji.issuenum "JIRA-Key", CV.* FROM jiraissue ji, (SELECT nvl(cv1.issue,cv2.issue) AS "ISSUE", cv1.stringvalue AS "HP_OpenView_Type", cv2.numbervalue AS "HP_OpenView_ID" FROM (SELECT * FROM customfieldvalue WHERE customfield = 11602) cv1 inner JOIN (SELECT * FROM customfieldvalue WHERE customfield = 11601) cv2 ON cv1.issue = cv2.issue ) CV, project p WHERE ji.ID = CV.issue AND ji.project = p.ID
Hi all,
thanks for your reply!
Meanwhile i found the db scheme where i tried to create an according query. As soon as we got some results i ll post it here...
Thanks & regards,
Hans-Hermann
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You need to be reading customfieldvalue for the data value. That table has all of the custom field data, so you will need to limit the selection with the issue id(s) (from reading jiraissue), and the custom field id(s), which you get from your SQL already posted.
When you are writing data from external to Jira, remember that you can NOT do it with SQL.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
The customfieldvalue table holds the values for a certain issue (you have FK on issue and the custom fields from the SELECT you mentioned), so you can query that.
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.