how to get jira not logged user list in sql database

Ramaiah Pendli March 17, 2016

some of the JIRA users details shows Login Details as Not recorded from the JIRA user directory.

how can i extract those users from Oracle 11 database.

2 answers

0 votes
Phill Fox
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
March 17, 2016

I suspect that the reason you are looking for a list of users who have not logged in the system is so that you can go in and deactivate them from your system. You may like to review this plugin which enables you to do this efficiently from within the application. https://marketplace.atlassian.com/plugins/com.riadalabs.jira.plugins.userdeactivator/server/overview

 

0 votes
Vasiliy Zverev
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.
March 17, 2016

Here is a SQL to get last login dateTime in mills:

declare @startDate datetime = '1970-1-1';
Select
	cwd_user.display_name	as 'user name'
	, cwd_user_attributes.attribute_value
	, case 
		when cwd_user_attributes.attribute_value is not null then CAST(  dateaDD(SECOND, CAST(cwd_user_attributes.attribute_value as bigint)/1000, @startDate ) as DATE) 
		else ''
	end as 'last login date'
from
	cwd_user
	left join	cwd_user_attributes 
	on cwd_user.ID = cwd_user_attributes.user_id
	and cwd_user_attributes.attribute_name = 'login.lastLoginMillis'

Suggest an answer

Log in or Sign up to answer