It's not the same without you
Join the community to find out what other Atlassian users are discussing, debating and creating.
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
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.
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.
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.
Hey admins! I’m Dave, Principal Product Manager here at Atlassian working on our cloud platform and security products. Cloud security is a moving target. As you adopt more products, employees consta...
Connect with like-minded Atlassian users at free events near you!
Find a groupConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no AUG chapters near you at the moment.
Start an AUGYou're one step closer to meeting fellow Atlassian users at your local meet up. Learn more about AUGs
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.