oracle11g_system partition系統分割槽
oracle11g開始,支援system partition;
-----system partition的概念
Use this clause to create system partitions. System partitioning does not entail any partitioning key columns, nor do system partitions have any range or
list bounds or hash algorithms. Rather, they provide a way to equipartition dependent tables such as nested table or domain index storage tables with
partitioned base tables.
和之前的hash,range,list partition不同,不用指定分割槽列;也沒有hash,range,list的演算法機制;它透過分割槽的基表把依賴表的資料平均分佈;
它適用於不能按range,list,hash進行分割槽,又想把資料均分在不同的分割槽中,可採用此種方式;
Use this clause to create system partitions. System partitioning does not entail any partitioning key columns, nor do system partitions have any range or
list bounds or hash algorithms. Rather, they provide a way to equipartition dependent tables such as nested table or domain index storage tables with
partitioned base tables.
和之前的hash,range,list partition不同,不用指定分割槽列;也沒有hash,range,list的演算法機制;它透過分割槽的基表把依賴表的資料平均分佈;
它適用於不能按range,list,hash進行分割槽,又想把資料均分在不同的分割槽中,可採用此種方式;
If you specify only PARTITION BY SYSTEM, then the database creates one partition with a system-generated name of the form. SYS_Pn.
由系統產生分割槽名字,如:SYs_pN
由系統產生分割槽名字,如:SYs_pN
If you specify PARTITION BY SYSTEM PARTITIONS integer, then the database creates as many partitions as you specify in integer, which
can range from 1 to 1024K-1.
指定partition by system partitioins inteter,產生integer分割槽;分割槽數量自1-1024k-1
can range from 1 to 1024K-1.
指定partition by system partitioins inteter,產生integer分割槽;分割槽數量自1-1024k-1
----system partition的語法
SQL> create table t_system_partition(a int,b int)
2 partition by system partitions 2;
Table created.
---報錯:原因對於system partition的表在dml必須指定分割槽名字,因為system partition沒有顯式指定分割槽邊界
SQL> insert into t_system_partition values(1,1);
insert into t_system_partition values(1,1)
*
ERROR at line 1:
ORA-14701: partition-extended name or bind variable must be used for DMLs on
tables partitioned by the System method
---指定分割槽後dml正常執行
SQL> insert into t_system_partition partition(sys_p41) values(1,1);
SQL> insert into t_system_partition partition(sys_p41) values(1,1);
1 row created.
SQL> insert into t_system_partition partition(sys_p42) values(1,1);
1 row created.
SQL> insert into t_system_partition partition(sys_p42) values(3,3);
1 row created.
SQL> commit;
Commit complete.
SQL> select * from t_system_partition;
A B
---------- ----------
1 1
1 1
3 3
---------- ----------
1 1
1 1
3 3
SQL> select * from t_system_partition partition(sys_p41);
A B
---------- ----------
1 1
---------- ----------
1 1
SQL> select * from t_system_partition partition(sys_p42);
A B
---------- ----------
1 1
3 3
---------- ----------
1 1
3 3
-----system partition的操作限制
---iot或集表不能構建system partition
You cannot system partition an index-organized table or a table that is part of a cluster.
---組合分割槽不支援system partition
Composite partitioning is not supported with system partitioning.
---不能拆分system partition
You cannot split a system partition.
---用create table as select不能使用system partition
You cannot specify system partitioning in a CREATE TABLE ... AS SELECT statement.
---如何想用insert into as select 把資料插入到system partition中,必須在insert into指定分割槽表
To insert data into a system-partitioned table using an INSERT INTO ... AS subquery statement, you must use partition-extended syntax to specify the partition into which the values returned by the subquery will be inserted.
後記:關於oracle11g分割槽新特性,可參考:
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/9240380/viewspace-752300/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 分割槽Partition
- 分割槽partition知識點
- Spark學習——分割槽Partition數Spark
- Oracle Partition 分割槽詳細總結Oracle
- 分割槽函式Partition By的基本用法函式
- Kafka分割槽分配策略(Partition Assignment Strategy)Kafka
- 分割槽函式partition by的基本用法【轉載】函式
- Android系統常用分割槽Android
- Oracle查詢Interval partition分割槽表內資料Oracle
- Linux系統中分割槽是什麼?Linux系統分割槽方式有幾種?Linux
- Linux系統怎麼分割槽Linux
- Mac磁碟如何分割槽?教你Mac系統磁碟自由分割槽教程!Mac
- Linux系統如何進行分割槽?swap分割槽是什麼?Linux
- 使用parted建立大分割槽時 mkpart Warning: The resulting partition is not properly
- 系統分割槽win10怎麼設定 怎麼給win10系統分割槽Win10
- MySQL全面瓦解29:使用Partition功能實現水平分割槽MySql
- win10 怎麼分割槽_如何給win10系統分割槽Win10
- win10怎樣分割槽_win10系統如何給磁碟分割槽Win10
- 【Linux系統】fdisk相關分割槽命令。Linux
- Linux系統對分割槽有哪些要求?Linux
- 資料庫系統設計:分割槽資料庫
- win10系統保留分割槽怎麼隱藏_win10如何隱藏系統保留分割槽Win10
- win10系統下將邏輯分割槽改為主分割槽的方法Win10
- 淺析Win10系統主分割槽和邏輯分割槽的區別Win10
- win10系統硬碟如何分割槽_win10主硬碟怎麼分割槽Win10硬碟
- win10重灌系統分割槽教程_win10重灌系統是怎麼分割槽Win10
- Linux 磁碟分割槽及檔案系統管理Linux
- win10硬碟分割槽怎麼分_win10系統如何對硬碟分割槽Win10硬碟
- thinkpad自帶win10系統怎麼進行分割槽 thinkpad電腦win10系統如何分割槽ThinkPadWin10
- win10系統硬碟分割槽怎麼分 win10硬碟分割槽教程圖解Win10硬碟圖解
- win10刪除系統保留分割槽如何操作_win10刪除系統保留分割槽怎麼處理Win10
- PostgreSQL:傳統分割槽表SQL
- windows10系統如何隱藏硬碟分割槽Windows硬碟
- 用GParted給linux系統進行磁碟分割槽?Linux
- 伺服器重灌系統後分割槽丟失伺服器
- linux系統下分割槽邏輯卷擴容Linux
- Linux系統磁碟和分割槽有哪些命令呢?Linux
- 作業系統 『動態(可變)分割槽分配』作業系統
- win10分割槽使用mbr好還是gpt好_win10系統gpt分割槽和mbr分割槽的區別Win10GPT