Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in

Find inactive users in Confluence

Jorge
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 Leaders.
February 19, 2014

I would like to get a list/report of users who have not logged in in a long time so I can deactivate them. I found way of getting that report from this page: https://confluence.atlassian.com/display/CONFKB/How+to+Identify+Inactive+Users+in+Confluence

SELECT username, successdate
FROM logininfo
ORDER BY successdate;

However, when running this query, it will give me the username as this: 8a18e83e42f2b5cd01431e920fba0030 and that doesn't tell me anything.

Is there a way that I could get the real username?

Is there a more complete statistic report that you recomend?

1 answer

1 accepted

1 vote
Answer accepted
Davin Studer
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 Leaders.
February 20, 2014

Here you go.

select M.username, L.SUCCESSDATE
from logininfo L
inner join user_mapping M on L.USERNAME = M.user_key
order by L.SUCCESSDATE

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events