Just a heads up: On March 24, 2025, starting at 4:30pm CDT / 19:30 UTC, the site will be undergoing scheduled maintenance for a few hours. During this time, the site might be unavailable for a short while. Thanks for your patience.
×Good afternoon
I am looking for a bit of help to write a SQL query which will return which JIRA projects a user is explicitly listed in within Roles.
Any help would be appreciated :)
Hi Helen,
There is a KB for this over in How to get a list of users assigned to project roles for your project. I believe you can use the SQL query of:
SELECT p.pname, pr.NAME, u.display_name
FROM projectroleactor pra
INNER JOIN projectrole pr ON pr.ID = pra.PROJECTROLEID
INNER JOIN project p ON p.ID = pra.PID
INNER JOIN app_user au ON au.lower_user_name = pra.ROLETYPEPARAMETER
INNER JOIN cwd_user u ON u.user_name = au.user_key;
in order to retun all the usernames that have been explicitly assigned a role in a project in JIRA. In my own testing this does not include groups that have been assigned to a role that users might be a member of, so I think this should be able to provide you with a list of the explicit user accounts added to specific project roles.
Good morning @Andy Heinzer
You're absolutely right. I found the KB article not long after posting this but forgot to update to say i'd found it.
The SQL works perfectly, I did a bit of an addition at the end to search for a key word within the account name and it did exactly what I wanted it to do.
Thank you for coming back to me, it's very much appreciated :)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi,
I'm using the query above (from the confluence link), but I've found a couple scenarios where active users assigned a project role aren't showing in the query results. Other users in the same project / project role are showing in the query results.
Out of 3,000 users, I know of 2 users who aren't in the output of this query. I'm not sure how many other users are missing in the output.
Has anybody else run into this issue?
Thanks!
Bridy
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.