function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
punit tyagi 7punit tyagi 7 

if a batch class can schedule or it is in queue then it can again schedule with diff name is it possible????

ShirishaShirisha (Salesforce Developers) 
Hi Punit,

Greetings!

Yes,you can schedule he same batch class again as the class is different and you can schedule it in an another class as mentioned in the below document:

https://developer.salesforce.com/docs/atlas.en-us.apexcode.meta/apexcode/apex_scheduler.htm

Kindly mark it as best answer if it helps so that it can help others in the future.

Warm Regards,
Shirisha Pathuri
RituSharmaRituSharma
Yes, technically you can schedule the same job with another name but you should not do it since it might happen that both the instances are trying to update the same record or records at the same time and then it could cause locking issues.