Oracle 分區表的建立

來源:互聯網
上載者:User

今天學習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>

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.