How to find expired users

prakash ganeshan January 20, 2014

We have integrated AD with crowd and JIRA uses crowd for authentication. Now users who got deleted from AD are also deleted from crowd and subsequently from JIRA. But the issues assigned to them and deleted user in the watcher list of issues are still in JIRA, beasue of this email notification is working whenever there is an update on the issue.

Is there a way I can find these expired\deleted users in JIRA ?

1 answer

0 votes
Zul NS _Atlassian_
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
January 20, 2014

You can check if the user exist in Userassociation table but not cwd_user table. Maybe with the following query

select * from userassociation where source_name not in (select lower_user_name from cwd_user) AND association_type='WatchIssue';

Suggest an answer

Log in or Sign up to answer