1
2
3
4
5
6
global class SortUpdateOpp2BatchSchedule implements Schedulable {
    global void execute(SchedulableContext sc) {
        //只能一批一条
        Database.executeBatch(new SortUpdateOpp2Batch(),1);
    }
}