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;