The Atlassian Community Forums are currently in read-only mode. We will be relaunching on a new platform on September 22 (read more here). We apologize for the extended downtime. For concerns or questions, please email communitymanagers@atlassian.com. See you on the other side, on the new Atlassian Community Forums! :)

×

Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Query to create report of all groups and their membership

Deleted user
December 17, 2012

Is there a query we can run in the database to create a report (or list) all the groups and their membership?

Also is there away to determine which groups are Global and which are space specific (please excuse me if that is a novice question. Our primary Confluence admin has left the company, and I've taken over temporarily.)?

I tried using the User List Macro but it got error Error: Rendering this content exceeded the timeout of 120 seconds. on a few of the groups I tried testing with. I assume that is because those were large groups.

Also I'd like to be able to re-run this query so I can monitor group creation/usage.

Thanks

1 answer

1 accepted

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

Post a new question

1 vote
Answer accepted
Bhushan Nagaraj
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Champions.
December 17, 2012

This should give you a list of all the groups with related users.

select c.group_name, u.user_name 

from dbo.cwd_membership m

inner join dbo.cwd_group c 

on m.parent_id = c.id

inner join dbo.cwd_user u

on u.id = m.child_user_id

order by c.group_name

TAGS
AUG Leaders

Atlassian Community Events