I removed the users from the groups to deactivate their accounts. I want to find the tasks they were assigned to but nothing shows up when I search under their names.
You should be able to use an advanced issue search to identify issues to which your deactivated users were assigned. The JQL would look like this:
assignee = 'username'
If that's not working for you, you can try using this SQL query to grab all the issues to which your deactivated users were assigned:
SELECT * FROM jiraissue WHERE assignee = 'username';
If you want to narrow the search down to a particular type of issue (you mentioned 'tasks' but I wasn't sure if you meant "issuetype = 'Task'"), run this query to get the ID for the issue type you're after:
SELECT id,pname FROM issuetype WHERE pname = 'issueTypeName';
Now that you have the ID for the issuetype, you can run:
SELECT * FROM jiraissue WHERE assignee = 'username' AND issuetype = 'issuetypeID';
Hope that helps!
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.