表分区维护的sql(6)

来源:未知 责任编辑:责任编辑 发表时间:2015-10-08 14:16 点击:
          from dual;
      elsif (v_row.partitionflag = 2) then
        --按周分区,肯定每天都要维护  www.2cto.com  
        v_partitionchar := Const_Partition_WEEK_prefix;
        v_comments      := 'partition_flag:' || v_row.partitionflag ||
                           ' of maintenance table :' || v_row.table_name ||
                           ' in partition_table  can''t be supported.';
        Pro_Record_Log(v_comments, v_comments);
        goto here;
      
      elsif (v_row.partitionflag = 3) then
        --按月分区,每月1号维护
        Select to_char(v_sysdate, 'dd') into v_day from dual;
        begin
          select to_number(param_value)
            into v_MonthExecution_DAY
            from partition_param t
           where t.param_mask = 'MONTH_EXECUTION_DAY';
        exception
          when others then
            if SQLCODE = -1403 then
              v_comments := 'when maintenancing ' || v_row.table_name ||
                            ',MONTH_EXECUTION_DAY in partition_param is invalid. it''s must be [1-28].';
              Pro_Record_Log(v_comments, v_comments);
            else
              v_comments := 'when maintenancing ' || v_row.table_name ||
                            ',an error happened.' || SQLERRM;
              Pro_Record_Log(v_comments, v_comments);
            
            end if;
            goto here;
            www.2cto.com  
        end;
      
        if (v_MonthExecution_DAY is null or v_MonthExecution_DAY > 28 or
           v_MonthExecution_DAY < 1) then
发表评论
请自觉遵守互联网相关的政策法规,严禁发布色情、暴力、反动的言论。
评价:
表情:
用户名: 验证码:点击我更换图片

推荐热点

  • Request.ServerVariables 参数大全
  • 执行全文索引时出现权限不足的解决方法
  • 导入excel文件处理流程节点的解决方案
  • MongoDB安装为Windows服务方法与注意事项
  • 查看sql修改痕迹(SQL Change Tracking on Table)
  • App数据层设计及云存储使用指南
  • PostgreSQL启动过程中的那些事三:加载GUC参数
  • Percolator与分布式事务思考(二)
  • 写给MongoDB开发者的50条建议Tip1
?? - ?? - ÝřŝžľŘÝź - TAGąęÇŠ - RSSśŠÔÄ - ??
Copyright © 2004-2024 上海卓卓网络科技有限公司