Missed Team ’24? Catch up on announcements here.

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

How to find users that never logged in

Aviram Gabay
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.
August 19, 2015

Hi,

I would like to get a list of all the (active) users who never logged in to the wiki.
I found the solution with the user macro that was posted here, but when trying to apply it to list all users it takes to much time to load.

 

is there a way to dig this information out via a DB query? my users are stored in crowd.

 

Thanks!

2 answers

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
Nic Brough -Adaptavist-
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
August 19, 2015
0 votes
Pilar
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.
August 19, 2015

You can achieve this with the help of a join on the two database tables cwd_user and cwd_user_attribute

select * from cwd_user_attribute where attribute_name='lastAuthenticated';

select * from cwd_user;

All users will feature in cwd_user but only users who have authenticated at least once will feature in the cwd_user_attribute table.

Hope thishelps

Pilar

TAGS
AUG Leaders

Atlassian Community Events