Simon,
here is something you could do (dirty command line hack, unsupported of course).
Go to your ACC via SSH or console (root) and run the following commands or put them into a script of your liking:
Code:
/var/mdw/scripts accd stop
psql -U acc -c "delete from action_info where data like '%status%finished%';"
/var/mdw/scripts accd start
This will remove all finished one-shot jobs (not the recurring ones).
Just to be careful, you can first try a line like this to inspect the jobs to be deleted:
Code:
psql -U acc -c "select * from action_info where data like '%status%finished%';"
Hope that helps.
Cheers,
Henning