• 渠道号码自动延迟1天


         渠道号码自动延迟1天
     
    先做这个 以下渠道即将超时还差半个小时超时 的慢充自动延期1天 超时时间大于6天了就不延了 写在监控存储过程中
    100095,100099,100101,100104,100041
     
     
      ----begin 20150112 add phoneinterface一些渠道提交的即将慢充号码,自动延期1天,最多延迟3次----------
    update dbo. do_phone set state=0 ,MaxEndTime= dateadd(day ,1, MaxEndTime) where maxendtime<dateadd( n,30 ,getdate()) and datediff(day ,OrderTime, MaxEndTime)<6 and state =1099 and isfinal=0 and dotype in(0 ,92, 95) and from_channel_child in( 'f-100095','f-100099' ,'f-100101', 'f-100104','f-100041' )
    update top (100) dbo.do_phone set MaxEndTime= dateadd(day ,1, MaxEndTime) where maxendtime<dateadd( n,30 ,getdate()) and datediff(day ,OrderTime, MaxEndTime)<6 and state =0 and isfinal=0 and dotype in( 0,92 ,95) and from_channel_child in('f-100095', 'f-100099','f-100101' ,'f-100104', 'f-100041')
    ----end 20150112 add phoneinterface一些渠道提交的即将慢充号码,自动延期1天,最多延迟3次---------
     
     
    --do_center数据库的监控存储过程中,添加下面代码
    ----begin 20150121 add phoneinterface一些代理提交的慢充号码,自动延期1个月----------
    update top (100) dbo.do_phone set MaxEndTime= dateadd(month ,1, MaxEndTime) where maxendtime<dateadd( day,7 ,getdate()) and datediff(day ,channel_order_createtime, MaxEndTime)<30 and state=0 and isfinal= 0 and dotype in(0, 92,95 ) and from_channel_child in('f-100095', 'f-100099','f-100101' ,'f-100041')
    ----end 20150121 add phoneinterface一些代理提交的慢充号码,自动延期1个月---------
     
     
  • 相关阅读:
    (三)xpath爬取4K高清美女壁纸
    聚焦爬虫:数据解析
    (二)requests-爬取国家药监局生产许可证数据
    (一)requests-实战小练习
    requests模块
    spring+apache dbcp +oracle 连接池配置以及优化
    IntelliJ IDEA 注释模版 输入/**后 不显示配置好的模板
    oracle 隔离级别、事务怎么开始的以及如何查看数据库采用字符集
    java 日期处理相关
    Oracle 插入数据时获取系统时间
  • 原文地址:https://www.cnblogs.com/ComputerVip/p/11624727.html
Copyright © 2020-2023  润新知