oracle 建分区表,时间自增

复制代码
建每月自增分区表
create table month_interval_partition_table (id number,  time_col date) partition by range(time_col) interval (numtoyminterval(1,'month')) ( partition p_month_1 values less than (to_date('2014-01-01','yyyy-mm-dd'))
  alter tablespace mytablespace );
复制代码

 

 

清空表分区数据:
alter table 表名 truncate partition 分区名;
直接删除分区:
alter table 表名 drop partition 分区名;
posted @   清晨时光  阅读(5463)  评论(0编辑  收藏  举报
努力加载评论中...
点击右上角即可分享
微信分享提示