배치클래스 1. 배치클래스 짠다 2. 스케줄 코드 짠다. 3. 배치 테스트코드 짠다. [ 배치 바로 실행 ] > 어나니머스에서 아래 코드 넣고 excute 누르기 Database.executeBatch(new 배치클래스이름()); ex) Database.executeBatch(new SME_PointBatch()); [ 배치 스케줄 ] 스케줄러클래스명 scheduler = new 스케줄러클래스명(); String sch = '0 0 9 * * ?'; System.schedule('스케줄러클래스명', sch, scheduler); ex) SK_SiteEmpBatchScheduler scheduler = new SK_SiteEmpBatchScheduler(); String sch = '0 0 9 * * ?'..