Delete Scheduled list workflow programatically

  • 15 February 2022
  • 0 replies
  • 34 views

Userlevel 3
Badge +8

Topic

If for some reason there is a need to remove a large number of duplicate scheduled workflows

 

Instructions

declare @wfId varchar(max)

Select @wfId= [<NameOfNintexContentDataBase>].[dbo].Workflows.WorkflowId
from [<NameOfNintexContentDataBase>].[dbo].Workflows
Where WorkflowName = '<NameOfWorkFLow>' ;

Delete From [<NameOfNintexConfigDatabase].[dbo].WorkflowSchedule
where WorkflowId =@wfId;

 


0 replies

Be the first to reply!

Reply