how to add multiple values/options to a custom field.

Pravin Metkar March 7, 2016

I have a custom field and i want to add near about 1000 values/option values to it. How can i do it in a bulk way? Is there any way to add it directly to database?

 

2 answers

2 votes
Nic Brough -Adaptavist-
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
March 7, 2016

Doing it in the database is a very bad approach.  Do you fully understand the JIRA data structure well enough?  There's at least three tables you need to understand and that's just for global lists, there's more if you are using field contexts.

I'd also recommend that before you attempt this, you take a long hard look at the option list.  1,000 options is a silly amount to offer the users and probably isn't really usable.  You really need to look at what you're trying to do and probably change the approach.

If you do decide to do it, then:

The best way to do this is with a script with the script-runner add-on.  You can do a simple spreadsheet that can generate lines of script from a column with your values in it, paste it in and run it once.  Or, even better, use the built in Bulk import values script.

Another approach would be to create an empty project, and use CSV import to pull 1,000 issues into it, each with a dummy summary and a different option set, and tell the import to create new options.  Then delete the empty project (it won't remove the options, just the dummy issues you've created)

If you still want to do it with SQL, then you'll need a full understanding of customfield, customfieldoption, the counter table and the field's eventual context.  Also, you will need to plan for a full backup and JIRA being offline while the SQL runs, and a recommended full re-index after restarting it.

0 votes
Michael Partyka
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
March 7, 2016

In db you have two tables:

customfield (here find your field id)

customfieldoption (add values to this field)

Nic Brough -Adaptavist-
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
March 7, 2016

Argh, no.  You've forgotten the counters and the rest of the option flags.

Michele January 25, 2017

Hi Michal,

do you have a scriptrunner example to adding option values to a custom field list using data from JIRA Db?

Thanks 

Suggest an answer

Log in or Sign up to answer