美文网首页
Oracle创建分区表操作

Oracle创建分区表操作

作者: Quick_5413 | 来源:发表于2021-07-22 08:22 被阅读0次

1、创建语句
create table p(id number)
partition by range(id)
(partition p1 values less than(100) tablespace t1,
partition p2 values less than(200) tablespace t2,
partition p3 values less than(300) tablespace t3);
2、添加分区
alter table p add partition p4 values less than (400) tablespace t4;
3、清除分区数据
alter table p trunc partition p1;
4、删除分区
alter table p drop partition p1;

相关文章

网友评论

      本文标题:Oracle创建分区表操作

      本文链接:https://www.haomeiwen.com/subject/nkfrmltx.html