Skip to content

Instantly share code, notes, and snippets.

@jongpie
Created February 3, 2017 20:41
Show Gist options
  • Save jongpie/6d3dbbca110e2b95b4df779103b20c5a to your computer and use it in GitHub Desktop.
Save jongpie/6d3dbbca110e2b95b4df779103b20c5a to your computer and use it in GitHub Desktop.
Abort all scheduled jobs
for(CronTrigger cronJob : [SELECT Id, CronExpression,CronJobDetailId, CronJobDetail.Name, CronJobDetail.JobType FROM CronTrigger]) {
System.abortJob(cronJob.Id);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment