zoukankan      html  css  js  c++  java
  • 添加表分区

    --添加student 表字段(CREATEDATE)按月分区
    alter table student add partition p201600 values less than (TO_DATE('2016-01-01','YYYY-MM-DD'));
    alter table student add partition p201601 values less than (TO_DATE('2016-02-01','YYYY-MM-DD'));
    alter table student add partition p201602 values less than (TO_DATE('2016-03-01','YYYY-MM-DD'));
    alter table student add partition p201603 values less than (TO_DATE('2016-04-01','YYYY-MM-DD'));
    alter table student add partition p201604 values less than (TO_DATE('2016-05-01','YYYY-MM-DD'));
    alter table student add partition p201605 values less than (TO_DATE('2016-06-01','YYYY-MM-DD'));
    alter table student add partition p201606 values less than (TO_DATE('2016-07-01','YYYY-MM-DD'));
    alter table student add partition p201607 values less than (TO_DATE('2016-08-01','YYYY-MM-DD'));
    alter table student add partition p201608 values less than (TO_DATE('2016-09-01','YYYY-MM-DD'));
    alter table student  add partition p201609 values less than (TO_DATE('2016-10-01','YYYY-MM-DD'));
    alter table student add partition p201610 values less than (TO_DATE('2016-11-01','YYYY-MM-DD'));
    alter table student add partition p201611 values less than (TO_DATE('2016-12-01','YYYY-MM-DD'));
    alter table student add partition p2016max values less than (TO_DATE('2099-12-31','YYYY-MM-DD'));

  • 相关阅读:
    TensorFlow---基础---GFile
    TensorFlow---image recognition--classify_image运行、文件说明与错误(路径)解决
    gcc -D
    c语言数据读入---sscanf、fscanf
    Mysql--视图
    Mysql的索引
    每天学点linux命令之nc
    Redis基础---链接管理
    iOS WKWebview 网页开发适配指南
    Win7/Win10下搭建Go语言开发环境
  • 原文地址:https://www.cnblogs.com/cyblogs/p/5458883.html
Copyright © 2011-2022 走看看