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
Priyanka PallepatiPriyanka Pallepati 

Schedule my scheduler class every 30 minutes

Hi I have a scheduler class which implements Schedulable and in the execute method I am executing a batch using 
SynchronizerBatch batch = new SynchronizerBatch(UserInfo.getSessionId(),query);
Database.executeBatch(batch,1);

How do I schedule this scheduler class every 30 minutes in salesforce?
Best Answer chosen by Priyanka Pallepati
Chamil MadusankaChamil Madusanka
Solution is here: https://developer.salesforce.com/forums/ForumsMain?id=906F00000008zElIAI (https://developer.salesforce.com/forums/ForumsMain?id=906F00000008zElIAI" target="_blank)