Find Users in Confluence With Access to a Space?

David Malka June 5, 2015

Hi,

One of our managers has asked me to list the users not in our company who have access to a particular space in Confluence.  If I look in the group that has access to the space, there are 111 members.  I try this in the JIRA MySQL DB (we use crowd)..

mysql> SELECT lower_user_name, email_address,pname FROM cwd_user, project  WHERE email_address NOT LIKE '*%.ourcompany.com' AND pname = 'somegroup';

That lists 1190 users.  I'm guessing there's some way to narrow this down, but I can't find which table...  help! 

 

 

1 answer

1 accepted

0 votes
Answer accepted
Daniel Ponzio
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
June 8, 2015

Hey David!

Try to run the query below, modifying the space names, email, and group names. This runs on the Confluence DB, if you'd like to run this on JIRA it would take lots of tweaking as the tables are named differently and permissions are defined differently. I also tried this on postgres in my own instance. If we can't get it to work I'll try to test it on a MySQL DB:

SELECT sp.permid, sp.permtype, s.spacekey, s.spacename, sp.permgroupname, um.lower_username, cu.email_address
FROM spacepermissions AS sp
JOIN spaces AS ON sp.spaceid = s.spaceid
LEFT JOIN user_mapping AS um ON sp.permusername = um.user_key
LEFT JOIN cwd_user AS cu ON um.lower_username = cu.lower_user_name
WHERE s.spacename = 'SPACENAME'
AND (cu.email_address NOT LIKE '%@DOMAIN.com' OR sp.permgroupname = 'GROUPNAME');

Just for reference, this is basically a modified version of the query found here. Hopefully this helps!

Daniel

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events