- Create a class that implements the Batchable and Schedulable interfaces
- Connect to the Developer Console
- Go to Debug / Open Execute Anonymous Window
- Enter this code and execute it
- Monitor your scheduled jobs
- If you need to run the job more often, like every 15 minutes, create two additional jobs:one for 15 minutes, and one for 45 minutes.
System.schedule('myJob_00', '0 0 * * * ?', new myClass());
System.schedule('myJob_30', '0 30 * * * ?', new myClass());
by Vladimir Martinov