You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
Query to find inactive admins of all the projects in jira.
#Project where project lead is not assigned
SELECT * FROM project WHERE lead NOT IN (SELECT user_name FROM cwd_user WHERE active = 1);
#Project where project lead is inactive
SELECT * FROM project WHERE lead IN (SELECT user_name FROM cwd_user WHERE active = 0);
Hi @Bhargav Tedla and welcome to our Community!
As an option you can try the following marketplace app:
Manage Inactive Users For Jira
I haven't tried it myself, but it seems promising.
Hope it helps.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Grigory Salnikov Thanks for your response. But it would be helpful if there is an SQL query for this. Currently am using the below query for getting project admins from all projects. i need to get only the admins who are inactive
select prjra.roletypeparameter PROJADMINS, prj.pname PROJNAME, prj.pkey PROJKEY from PROJECTROLEACTOR prjra, PROJECT prj, PROJECTROLE prjr where prjra.pid = prj.id and prjra.projectroleid = prjr.id and prjr.name = 'Administrators' order by prj.pname
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.