You need to sign in to do that
Don't have an account?

How to execute a particular batch records that has not execute ?
While performing DML operations on batch of records, when a particular batch execution failed. How to execute that particular batch records ?
From Developer Console:
1. Click Debug -> Open Execute Anonymous Window
2. Execute the following code
1Id <variable name>= Database.executeBatch(new <Class name>(), batch size);
For example:
1Id batchJobId = Database.executeBatch(new RunThisBatch(), 200);
Regards,
Harish.R