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

Reg: How to set batch size when using Batch Apex.
Hi All,
Is there any possibility of setting Apex Batch Size in Batch Apex. If so where would I have to specify that and is it possible to increase the batch size to more than 200.
Thanks in Advance,
Cheers,
Prasad
You can not give batch size more than 200. Database.executeBatch method takes two parameters:
• The class that implements Database.Batchable.
• The number of records to be passed as a single chunk to the execute method. This value must be less than 200. Use this when you have many operations for each record being passed in and are running into governor limits.
For more information you can refer the Apex guide.
Hope this helps.