Following a number of years of heavy usage in one of our applications based on Nintex for SharePoint we are noticing a degradation of performance in that particular SharePoint site. Upon further investigation we found that the root cause of this issue is the amount of even receivers stored at site level (around 60,000)
The followng query gives us the result shown further down
SELECT
class,count(*)
FROM
[dbo].[EventReceivers]
group by class
order by class

The name column (Not displayed above) shows “Created By Nintex Workflow Start Action “ and the class column (as displayed above) shows “Nintex.Workflow.Activities.Services.WorklfowCompletedEventReceiver”
Is there a way of purging these unwanted event receivers especially for items whose workflow has completed?
Thanks