当前位置:数据库 > Oracle >>

oracle建立分区表的方法

oracle建立分区表的方法
 
--建立散列分区表
create table t_emp(
empno int,
empname varchar2(20))
partition by hash(empno)
(partition part1 tablespace t1,
 partition part2 tablespace t2);
--插入数据
  insert into t_emp  select empno,ename from scott.emp;
--查询各分区数据
 select * from t_emp partition(part1);
 select * from t_emp partition(part1);
--使表空间脱机,只能查询未脱机表空间所在分区.
alter tablespace t1 offline;
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,