oracle組合分割槽系列二(composite hash partition)
在上文:http://space.itpub.net/9240380/viewspace-752465,測試了組合範圍分割槽.
本文繼續學習組合雜湊分割槽的相關使用
本文繼續學習組合雜湊分割槽的相關使用
---用子分割槽模板建立組合分割槽(模板:可理解為通用方法,一次建立多次使用)
---範圍子分割槽
SQL> create table t_hash(a int,b int)
2 partition by hash(a)
3 subpartition by range(b)
4 subpartition template(
5 subpartition sub1 values less than (5),
6 subpartition sub2 values less than (10)
7 )
8 (
9 partition px1,
10 partition px2
11 )
12 /
Table created
---範圍子分割槽
SQL> create table t_hash(a int,b int)
2 partition by hash(a)
3 subpartition by range(b)
4 subpartition template(
5 subpartition sub1 values less than (5),
6 subpartition sub2 values less than (10)
7 )
8 (
9 partition px1,
10 partition px2
11 )
12 /
Table created
---列表子分割槽
SQL> create table t_hash(a int,b int)
2 partition by hash(a)
3 subpartition by list(b)
4 subpartition template(
5 subpartition sub1 values (1,2,3,4,5),
6 subpartition sub2 values (6,7,8,9,10)
7 )
8 (
9 partition px1,
10 partition px2
11 )
12 /
Table created
---雜湊子分割槽
SQL> create table t_hash(a int,b int)
2 partition by hash(a)
3 subpartition by hash(b)
4 subpartition template(
5 subpartition sub1,
6 subpartition sub2
7 )
8 (
9 partition px1,
10 partition px2
11 )
12 /
Table created
SQL> create table t_hash(a int,b int)
2 partition by hash(a)
3 subpartition by hash(b)
4 subpartition template(
5 subpartition sub1,
6 subpartition sub2
7 )
8 (
9 partition px1,
10 partition px2
11 )
12 /
Table created
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/9240380/viewspace-752471/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- Oracle Partition 分割槽詳細總結Oracle
- 分割槽Partition
- Oracle分割槽表基礎運維-05組合分割槽Oracle運維
- Oracle分割槽表基礎運維-03HASH分割槽Oracle運維
- Oracle分割槽表基礎運維-07增加分割槽(2 HASH分割槽)Oracle運維
- Oracle查詢Interval partition分割槽表內資料Oracle
- ORACLE分割槽表梳理系列Oracle
- 分割槽partition知識點
- Oracle分割槽表基礎運維-07增加分割槽(4 RANGE_HASH)Oracle運維
- Spark學習——分割槽Partition數Spark
- 組合模式(Composite)模式
- 分割槽函式Partition By的基本用法函式
- Kafka分割槽分配策略(Partition Assignment Strategy)Kafka
- composite pattern(組合模式)模式
- oracle分割槽表和分割槽表exchangeOracle
- 分割槽函式partition by的基本用法【轉載】函式
- oracle分割槽表和非分割槽表exchangeOracle
- [oracle] expdp 匯出分割槽表的分割槽Oracle
- index_oracle索引梳理系列及分割槽表梳理IndexOracle索引
- 使用parted建立大分割槽時 mkpart Warning: The resulting partition is not properly
- Oracle分割槽表基礎運維-07增加分割槽(1範圍分割槽)Oracle運維
- oracle 分割槽表move和包含分割槽表的lob moveOracle
- Oracle分割槽表基礎運維-09刪除分割槽Oracle運維
- Oracle分割槽表基礎運維-02範圍分割槽Oracle運維
- Oracle分割槽表基礎運維-07增加分割槽(3列表分割槽)Oracle運維
- Oracle12c:建立主分割槽、子分割槽,實現自動分割槽插入效果Oracle
- MySQL的分割槽(二)MySql
- MySQL全面瓦解29:使用Partition功能實現水平分割槽MySql
- Oracle分割槽表基礎運維-04列表分割槽Oracle運維
- 《設計模式》 - 7. 組合模式( Composite )設計模式
- [C++設計模式] composite 組合模式C++設計模式
- 設計模式之組合模式(Composite)分享設計模式
- mongo 建立使用者 建hash 分割槽 建索引Go索引
- 從10046看Oracle分割槽裁剪Oracle
- Oracle分割槽表基礎運維-06分割槽表索引Oracle運維索引
- win10怎麼合併分割槽_win10合併分割槽的方法Win10
- mac分割槽合併APFS容器Mac
- C#設計模式-組合模式(Composite Pattern)C#設計模式
- 設計模式系列之組合模式(Composite Pattern)——樹形結構的處理設計模式