原文地址:https://www.cnblogs.com/yuxiaole/p/9809294.html html
oracle 11g 支持自動分區,不過得在建立表時就設置好分區。sql
若是已經存在的表須要改分區表,就須要將當前表 rename後,再建立新表,而後複製數據到新表,而後刪除舊錶就能夠了。數據庫
1、爲何要分區(Partition)
一、通常一張表超過2G的大小,ORACLE是推薦使用分區表的。oracle
二、這張表主要是查詢,並且能夠按分區查詢,只會修改當前最新分區的數據,對之前的不怎麼作刪除和修改。less
三、數據量大時查詢慢。測試
四、便於維護,可擴展:11g 中的分區表新特性:Partition(分區)一直是 Oracle 數據庫引覺得傲的一項技術,正是分區的存在讓 Oracle 高效的處理海量數據成爲可能,在 Oracle 11g 中,分區技術在易用性和可擴展性上再次獲得了加強。spa
五、與普通表的 sql 一致,不須要由於普通表變分區表而修改咱們的代碼。.net
2、oracle 11g 如何按天、周、月、年自動分區
2.1 按年建立
numtoyminterval(1, 'year') code
--按年建立分區表 create table test_part ( ID NUMBER(20) not null, REMARK VARCHAR2(1000), create_time DATE ) PARTITION BY RANGE (CREATE_TIME) INTERVAL (numtoyminterval(1, 'year')) (partition part_t01 values less than(to_date('2018-11-01', 'yyyy-mm-dd'))); --建立主鍵 alter table test_part add constraint test_part_pk primary key (ID) using INDEX; -- Create/Recreate indexes create index test_part_create_time on TEST_PART (create_time);
2.2 按月建立
numtoyminterval(1, 'month')htm
--按月建立分區表 create table test_part ( ID NUMBER(20) not null, REMARK VARCHAR2(1000), create_time DATE ) PARTITION BY RANGE (CREATE_TIME) INTERVAL (numtoyminterval(1, 'month')) (partition part_t01 values less than(to_date('2018-11-01', 'yyyy-mm-dd'))); --建立主鍵 alter table test_part add constraint test_part_pk primary key (ID) using INDEX;
2.3 按天建立
NUMTODSINTERVAL(1, 'day')
--按天建立分區表 create table test_part ( ID NUMBER(20) not null, REMARK VARCHAR2(1000), create_time DATE ) PARTITION BY RANGE (CREATE_TIME) INTERVAL (NUMTODSINTERVAL(1, 'day')) (partition part_t01 values less than(to_date('2018-11-12', 'yyyy-mm-dd'))); --建立主鍵 alter table test_part add constraint test_part_pk primary key (ID) using INDEX;
2.4 按周建立
NUMTODSINTERVAL (7, 'day')
--按周建立分區表 create table test_part ( ID NUMBER(20) not null, REMARK VARCHAR2(1000), create_time DATE ) PARTITION BY RANGE (CREATE_TIME) INTERVAL (NUMTODSINTERVAL (7, 'day')) (partition part_t01 values less than(to_date('2018-11-12', 'yyyy-mm-dd'))); --建立主鍵 alter table test_part add constraint test_part_pk primary key (ID) using INDEX;
2.5 測試
能夠添加幾條數據來看看效果,oracle 會自動添加分區。
--查詢當前表有多少分區 select table_name,partition_name from user_tab_partitions where table_name='TEST_PART'; --查詢這個表的某個(SYS_P21)裏的數據 select * from TEST_PART partition(SYS_P21);
3、numtoyminterval 和 numtodsinterval 的區別
3.1 numtodsinterval(<x>,<c>) ,x 是一個數字,c 是一個字符串。
把 x 轉爲 interval day to second 數據類型。
經常使用的單位有 ('day','hour','minute','second')。
測試一下:
select sysdate, sysdate + numtodsinterval(4,'hour') as res from dual;
結果:
3.2 numtoyminterval (<x>,<c>)
將 x 轉爲 interval year to month 數據類型。
經常使用的單位有 ('year','month')。
測試一下:
select sysdate, sysdate + numtoyminterval(3, 'year') as res from dual;
結果:
4、默認分區
4.1 partition part_t01 values less than(to_date('2018-11-01', 'yyyy-mm-dd'))。
表示小於 2018-11-01 的都放在 part_t01 分區表中。
5、給已有的表分區
須要先備份表,而後新建這個表,拷貝數據,刪除備份表。
-- 1. 重命名 alter table test_part rename to test_part_temp; -- 2. 建立 partition table create table test_part ( ID NUMBER(20) not null, REMARK VARCHAR2(1000), create_time DATE ) PARTITION BY RANGE (CREATE_TIME) INTERVAL (numtoyminterval(1, 'month')) (partition part_t1 values less than(to_date('2018-11-01', 'yyyy-mm-dd'))); -- 3. 建立主鍵 alter table test_part add constraint test_part_pk_1 primary key (ID) using INDEX; -- 4. 將 test_part_temp 表裏的數據遷移到 test_part 表中 insert into test_part_temp select * from test_part; -- 5. 爲分區表設置索引 -- Create/Recreate indexes create index test_part_create_time_1 on TEST_PART (create_time); -- 6. 刪除老的 test_part_temp 表 drop table test_part_temp purge; -- 7. 做用是:容許分區表的分區鍵是可更新。 -- 當某一行更新時,若是更新的是分區列,而且更新後的列植不屬於原來的這個分區, -- 若是開啓了這個選項,就會把這行從這個分區中 delete 掉,並加到更新後所屬的分區,此時就會發生 rowid 的改變。 -- 至關於一個隱式的 delete + insert ,可是不會觸發 insert/delete 觸發器。 alter table test_part enable row movement;
6、全局索引和 Local 索引
個人理解是:
當查詢常常跨分區查,則應該使用全局索引,由於這是全局索引比分區索引效率高。
當查詢在一個分區裏查詢時,則應該使用 local 索引,由於本地索引比全局索引效率高。
擴展:https://blog.csdn.net/lively1982/article/details/9398485
分區索引:
https://www.cnblogs.com/grefr/p/6095005.html
https://blog.csdn.net/w892824196/article/details/82803889