• Our Office
  • 12 Alpine Close Lakefield Benoni 1501

Clickatech Nintex

Nintex – Useful SQL Queries

This script will show you how many Workflow progress records each workflow in your environment has generated. SELECT i.WorkflowName, COUNT(p.InstanceID) [Number of WF Progress Records], i.siteid, i.webid, i.listid FROM dbo.workflowinstance i inner join dbo.workflowprogress p on i.InstanceID = p.InstanceID GROUP BY i.WorkflowName, i.siteid, i.webid, i.listid ORDER BY COUNT(p.InstanceId) DESC This [...]

Read More