Hello,
Is there a way in tempo that the admin could delete worklogs massively? As we have tried till now, you can only delete by going ticket by ticket. What we would like to achieve, is, for example, to be able to massively delete all worklogs of a month (for all people). Is there any way to do that, or at least do something close to that?
Thank you
Hi,
Currently, it is not possible to bulk edit or delete worklogs in JIRA or Tempo.
All the worklogs are in the "worklog" table in the JIRA database. You would need to execute an SQL to delete all the records in bulk. We do not recommend that you do so but you can at your own risk.
This SQL will show you all the worklogs a certain user has after 4-Jul-2016:
select *
from worklog
where author = 'john'
and startdate > '2016-07-04'
order by startdate
Regards,
Susanne
Hello and thank you for the answer.
Since we are on the Cloud installation, is your solution possible?
Thank you
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You would need to check with Atlassian, as they will need to do this for you.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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.