Oracle 用 Function 设定JOB时间

WBOY
풀어 주다: 2016-06-07 17:04:44
원래의
921명이 탐색했습니다.

create or replace function fn_get_myjob_interval return date is Result date; v_nextdate date; v_nexthours numbe

create or replace function fn_get_myjob_interval return date is
  Result      date;
  v_nextdate  date;
  v_nexthours number;
begin
  if to_number(to_char(sysdate, 'dd')) >= 25 then
    begin
      select max(t.activation_date)
        into v_nextdate
        from emesp.tp_production_arrange_kt t
       where t.activation_flag = 0; /*獲取指派最大的時間*/
    exception
      when no_data_found then
        v_nextdate := sysdate + 1; /*如果沒有隔天檢測*/
    end;
    if v_nextdate is null then
      v_nextdate  := sysdate;
      v_nexthours := to_number(to_char(v_nextdate, 'hh24')) + 1;
    else
      if v_nextdate         /*判斷獲取時間是否小於當前時間*/
        update emesp.tp_production_arrange_kt t
           set t.activation_date = sysdate + 60 / 1440
         where t.activation_flag = 0
           and t.activation_date = v_nextdate;
        v_nextdate  := sysdate + 60 / 1440;
        v_nexthours := to_number(to_char(v_nextdate, 'hh24')) + 1;
        commit;
      else
        v_nexthours := to_number(to_char(v_nextdate, 'hh24'));
      end if;
    end if;
  else
    v_nextdate  := to_date(to_char(sysdate, 'yyyymm') || '2008',
                           'yyyymmddhh24');
    v_nexthours := to_number(to_char(v_nextdate, 'hh24'));
    /*設定每個月20號以後才啟動JOB*/
  end if;
  result := trunc(v_nextdate) + (v_nexthours * 60) / 1440;
  /*轉化JOB可用時間*/
  return(Result);
end fn_get_myjob_interval;

linux

원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
최신 이슈
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿
회사 소개 부인 성명 Sitemap
PHP 중국어 웹사이트:공공복지 온라인 PHP 교육,PHP 학습자의 빠른 성장을 도와주세요!