Bulk Edit Groups in Jira

お困りですか?

アトラシアン コミュニティをご利用ください。

コミュニティに質問


診断

When managing group membership directly from the group rather than through the User Browser, there is a system limitation on the number of users you can add to a group at a time of 100, which limits the amount of users that can be edited at one time. To add more than 100 members into the group at once, they need to be extracted from the database with SQL.

回避策

  1. Identify the User Directory the users belong to:

    SELECT id, directory_name FROM cwd_directory
  2. Select all the users from that directory:

    SELECT user_name FROM cwd_user where directory_id = <id from the previous query>
  3. Comma separate them then copy and paste into the User Box:
  4. Press the  button.

(info) Please see  JRA-12844 - Getting issue details... STATUS  for further information on the 100 user limitation.

最終更新日 2021 年 11 月 19 日

この内容はお役に立ちましたか?

はい
いいえ
この記事についてのフィードバックを送信する
Powered by Confluence and Scroll Viewport.