function readOnly(count){ }
Don't have an account?
Search for an answer or ask a question of the zone or Customer Support.
You need to sign in to do that
Sign in to start searching questions
Signup for a Developer Edition
Sign in to start a discussion
Rather than attempting to delete the job record via DML, have you tried using the System.abortJob(String job_Id) method from the developer console
for(CronTrigger ct : [SELECT id, CronExpression, TimesTriggered, NextFireTime FROM CronTrigger]){
System.abortJob(ct.Id);
}