When drawing a table of the user roles of a certain company, I used postgresql to look it up:
SELECT
c.display_name,p.pname
FROM
project p, projectroleactor r, cwd_user c
WHERE
p.id=r.pid and r.roletypeparameter=c.user_name
AND
c.lower_email_address ilike '%company%'
ORDER by p.pname
Normally it should yield a certain amount of users but there were too few rows.
When digging into the projectroleactor table there were about some 100 rows with JIRAUSERxxxxx:
SELECT *
FROM
projectroleactor
WHERE
roletypeparameter ilike '%JIRAUSER%' or roletypeparameter ilike '%company%'
50054;13660;10450;"atlassian-user-role-actor";"JIRAUSER21101"
50055;13660;10450;"atlassian-user-role-actor";"john.smith@company.com"
50059;13660;10000;"atlassian-user-role-actor";"JIRAUSER21104"
50178;11489;10000;"atlassian-user-role-actor";"JIRAUSER20002"
50272;16560;10010;"atlassian-user-role-actor";"JIRAUSER20002"
50320;16460;10030;"atlassian-user-role-actor";"JIRAUSER20001"
50382;13161;10000;"atlassian-user-role-actor";"JIRAUSER21315"
50536;13161;10000;"atlassian-user-role-actor";"JIRAUSER21321"
50542;16660;10010;"atlassian-user-role-actor";"JIRAUSER21308"
50551;16660;10010;"atlassian-user-role-actor";"JIRAUSER21304"
50559;16660;10551;"atlassian-user-role-actor";"JIRAUSER21306"
Apparently this is because of username renaming.
Can't find the link with cwd_user though.
In which table is this stored?
The APP_USER table describes the relationship between userkey and username.
See this post.
Apparently this is because of username renaming.
Can't find the link with cwd_user though.
In which table is this stored?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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.