List of users showing when the accounts were created and by whom

お困りですか?

アトラシアン コミュニティをご利用ください。

コミュニティに質問

SQL query to see all user's accounts showing date created and who created it:

 

select author_key, object_id, created from audit_log 
where summary = 'User created' 
AND object_parent_name = 'JIRA Internal Directory'
ORDER BY created;

(info) Empty author means created by mail or during JIRA's installation.

 

Last modified on Mar 30, 2016

この内容はお役に立ちましたか?

はい
いいえ
この記事についてのフィードバックを送信する
Powered by Confluence and Scroll Viewport.