Home > Database > Mysql Tutorial > Oracle 分区表的建立

Oracle 分区表的建立

WBOY
Release: 2016-06-07 17:23:03
Original
1321 people have browsed it

今天学习Oracle的分区表技术,现在把建立分区表的语句放在这里,留个纪念!

今天学习Oracle的分区表技术,,现在把建立分区表的语句放在这里,留个纪念!

SQL> conn system/windows@study
已连接。

SQL> create tablespace test datafile 'D:\oracle\product\10.2.0\oradata\study\tes
t.dbf' size 100M autoextend on;

表空间已创建。
SQL> create tablespace test1 datafile 'D:\oracle\product\10.2.0\oradata\study\te
st1.dbf' size 100M autoextend on;

表空间已创建。

SQL> create user test identified by windows default tablespace test;

用户已创建。

SQL> grant connect,resource to test;

授权成功。

SQL> commit;

提交完成。

SQL> conn test/windows@study
已连接。
SQL> create table t_partition_range (id number,name varchar2(50)) partition by r
ange(id)(partition t_range_p1 values less than (10) tablespace test,partition t_
range_p2 values less than (20) tablespace test1,partition t_range_p3 values less
 than (30) tablespace users,partition t_range_pmax values less than (maxvalue) t
ablespace users);

表已创建。

SQL> insert into t_partition_range values(1,'wwww');

已创建 1 行。

SQL> insert into t_partition_range values(20,'wwww');

已创建 1 行。

SQL> insert into t_partition_range values(22,'wwww');

已创建 1 行。

SQL> insert into t_partition_range values(33,'wwww');

已创建 1 行。

SQL> insert into t_partition_range values(44,'wwww');

已创建 1 行。

SQL> commit;

提交完成。

SQL> select * from t_partition_range;

        ID NAME
---------- --------------------------------------------------
        1 wwww
        20 wwww
        22 wwww
        33 wwww
        44 wwww
SQL> select rowid,t.* from t_partition_range t;

ROWID                      ID NAME
------------------ ---------- --------------------------------------------------

AAAMqpAAFAAAAAWAAA          1 wwww
AAAMqrAAEAAAABGAAA        20 wwww
AAAMqrAAEAAAABGAAB        22 wwww
AAAMqsAAEAAAABOAAA        33 wwww
AAAMqsAAEAAAABOAAB        44 wwww

SQL>

linux

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template