Having Organization Members Details from JSM Database after GDPR Change
プラットフォームについて: Data Center - この記事は、Data Center プラットフォームのアトラシアン製品に適用されます。
このナレッジベース記事は製品の Data Center バージョン用に作成されています。Data Center 固有ではない機能の Data Center ナレッジベースは、製品のサーバー バージョンでも動作する可能性はありますが、テストは行われていません。サーバー*製品のサポートは 2024 年 2 月 15 日に終了しました。サーバー製品を利用している場合は、アトラシアンのサーバー製品のサポート終了のお知らせページにて移行オプションをご確認ください。
*Fisheye および Crucible は除く
要約
Since Jira 8.4.0, we introduced a new way to store user's keys in the Jira Database, per the section Generating user keys in the documentation GDPR changes in Jira. The key any new user created after the upgrade to Jira 8.4.0 or JSM 4.4.0 (and any higher version) will have the format "JIRAUSERXXXXX" and when reporting the Organization data from database we need to use User name from APP_USER table instead of Organization tables to have meaningful reports with comprehensible User names
環境
After JSM 4.4.0
ソリューション
The below sample query will list all organization members with understandable user names, it can be used for reporting purposes
This was written and tested using a PostgreSQL DB, for other database types you may need to tweak it depending on the database you are using.
SELECT DISTINCT app.lower_user_name as user,
org."NAME" as org_name,
project.pname as project_name , member."ORGANIZATION_ID" ,member."USER_KEY"
FROM "AO_54307E_ORGANIZATION" org ,
"AO_54307E_ORGANIZATION_MEMBER" member,
"app_user" app,
"AO_54307E_ORGANIZATION_PROJECT" orgproject,
"project" project
WHERE
app.user_key = member."USER_KEY"
AND
member."ORGANIZATION_ID" = org."ID"
AND
orgproject."PROJECT_ID" = project.id;