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?
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
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.