Browsed by
Month: January 2018

Jira Copy Custom Field to Another Customer Field

Jira Copy Custom Field to Another Customer Field

(Backup your data first, use at your own risk) set @rank=0; INSERT INTO jiradb.customfieldvalue SELECT 12101 + @rank:=@rank+1 as ID, a.ISSUE, 10308 as CUSTOMFIELD, a.UPDATED, a.PARENTKEY,a.STRINGVALUE, a.NUMBERVALUE,a.TEXTVALUE, a.DATEVALUE, a.VALUETYPE FROM jiradb.customfieldvalue a left join jiradb.customfieldvalue b on a.ISSUE = b.ISSUE and b.CUSTOMFIELD = 10308 where a.CUSTOMFIELD = 10800 and a.ISSUE = 11763; where 12101 is the max(ID) of the table to insert into 10308 is the new customerfieldID to be inserted 10800 is the from customfieldID to get the data…

Read More Read More

Verification and Validation

Verification and Validation

The Verification and Validation process areas are similar, but they address different issues. Validation demonstrates that the product, as provided (or as it will be provided), will fulfill its intended use, whereas Verification addresses whether the work product properly reflects the specified requirements. In other words, verification ensures that you built it right; whereas, validation ensures that you built the right thing. (from CMMI-Dev V1.3 Model) Verification is a testing which ensures that the product and product components meets the requirement…

Read More Read More