Answers for "run batch class from developer console"

SQL
2

apex execute batch job

Id batchJobId = Database.executeBatch(new RunThisBatch(), 200);
Posted by: Guest on June-28-2020
1

execute batch apex

MyBatchClass myBatchObject = new MyBatchClass(); 
Id batchId = Database.executeBatch(myBatchObject);
Posted by: Guest on October-09-2020

Code answers related to "run batch class from developer console"

Code answers related to "SQL"

Browse Popular Code Answers by Language