한 테이블에서 통계 데이터를 다른 테이블로 업데이트하는 저장 프로세스

1236 단어 저장 프로세스
최근에 사용자의 로그 정보를 기록하는 테이블이 하나 있는데 끊임없이 데이터가 삽입되어 있다. 이 로그에 대해 통계를 한 후에 분류대에 대응하는 정보표에서 간단하게 저장 과정을 쓴 다음job로 스스로 실행하면 된다.과정을 기록해 두다.
 
create or replace procedure P_MMS_IOD_COUNT_STAT is
--      

cursor iodcount is 
  select info_id, sum(iod_num)
  from t_mms_log
  where substr(time, 0, 8) = to_char(sysdate, 'yyyyMMdd')
  group by info_id;
--      ,         

type cnt is record(
  infoid integer,
  count integer
);
v_info_cnt cnt;
 
begin

--    
  open iodcount ;
  loop

--    
  fetch iodcount into v_info_cnt;
  exit when iodcount%notfound;
   update t_mms t
   set t.down_cnt=t.down_cnt + nvl(v_info_cnt.count,0)
   where t.id=v_info_cnt.infoid;
  end loop;
   --  

   commit;
   --    

   close iodcount;
   exception 
   when others then
    rollback;   
end P_MMS_IOD_COUNT_STAT;

 
 
job은 매일 새벽 1시에 달리기 시작한다.코드는 다음과 같습니다.
begin
  sys.dbms_job.submit(job => :job,
                      what => 'p_mms_iod_count_stat;',
                      next_date => to_date('25-12-2008 01:00:00', 'dd-mm-yyyy hh24:mi:ss'),
                      interval => 'sysdate+1');
  commit;
end;

좋은 웹페이지 즐겨찾기