Delete all worklogs for user (Tempo)

Sergio November 13, 2014

I would like to delete all worklogs for a particular user, but the only way I can think of is deleting records from the database, which is a bit risky since I don't have a full understanding of all Tempo tables. Basically, I could delete all records for that user in table 'worklog' but there are other tables involved such as 'propertyentry' or 'propertystring'. If I knew all of them I could come up with a proper query.

Does anyone have another idea or the right SQL statement to run?

Cheers

Sergio

1 answer

0 votes
Sverrir Tynes [Tempo]
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.
November 13, 2014

Hi Sergio

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-2013:

select * 
  from worklog
  where author = 'john'
    and startdate > '2013-07-04'
  order by startdate 
Hope this helps

Sverrir Tynes

Tempo support

Sergio November 13, 2014

That doesn't answer to my question. I already knew that so I was asking about other tables involved (for example, the ones that store worklog attributes.

Suggest an answer

Log in or Sign up to answer