Search for the failing workflow in workflowInstance
select * from WorkflowInstance;
delete from WorkflowInstance where instanceId = 'nnnnnn';
Delete all workflows (It is not recommended that you do this, especially if you run Content Approval workflows for version tags.):
delete from WorkflowInstance;
delete from WorkflowInstance where className = 'WebGUI::VersionTag'
and (select count(tagId) from assetVersionTag where tagId = substr(parameters from 16 for 22)) = 0;
After deleting workflows, restart spectre to get it to reload the newly modified WorkflowInstance table.
/data/wre/sbin/wreservice.pl --restart spectre
Keywords: Workflow