Find the list of inactive users in Bitbucket?
问题 How can I find the list of those users who never logged in to their Bitbucket account? Is there any query or macro, or will I have to do it manually ? 回答1: You can do this with SQL query to database: SELECT cu.lower_user_name ,cu.display_name ,cu.lower_display_name ,cu.lower_email_address ,cu.is_active ,dateadd(second,cast(cast(cua.attribute_value AS nvarchar(255)) AS bigint)/1000,'19700101 00:00:00:000') AS LAST_LOGIN FROM [BitBucketDB].[dbo].[cwd_user] As cu LEFT JOIN [BitBucketDB].[dbo]