Hello,
i need to update the values in a specific custom field. let assume that the field-name is URL.
this field is used in very issue and contains a link for example like this:
http://ab.programm.alm11.app.domain.net/xxx
xxx is always different so a bulk chang is not possible,
but know i want to change all the values of that custom filed in every issue to:
http://ab.programm.alm12.app.domain.net/xxx
the only difference is the number: 11 is old and 12 is new
best regards
toni
If you dont have direct access to the db you can use the DB Browser plugin, view the id of the customfield and update the values with an sql similar to the one below
UPDATE "CUSTOMFIELDVALUE" SET stringvalue = replace(stringvalue, 'http://ab.programm.alm11.app', 'http://ab.programm.alm12.app') WHERE CUSTOMFIELD = XXXXX
If you have access to the db you can perform the update statement directly.
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.