Oracle 11g虛擬列上建分區,oracle11g

來源:互聯網
上載者:User

Oracle 11g虛擬列上建分區,oracle11g

   在Oracle 11g上,可以在虛擬列上做分區,這個特性還比較有用,下面來做一個測試:

SQL> select * from v$version;

BANNER
--------------------------------------------------------------------------------
Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
PL/SQL Release 11.2.0.1.0 - Production
CORE    11.2.0.1.0      Production
TNS for Linux: Version 11.2.0.1.0 - Production

NLSRTL Version 11.2.0.1.0 - Production

SQL> drop table test purge;
SQL> create table test
    (bureau_code varchar2(20) not null,
     province_code as (CAST(SUBSTR(bureau_code,0,2) AS VARCHAR2(2)))
    )
    partition by list (province_code)
    (
    partition p1 values ('01'),
    partition p2 values ('02'),
    partition p3 values ('03'),
    partition p4 values ('04'),
    partition p5 values ('05')
    );

SQL> insert into test(bureau_code) values('0101');
SQL> insert into test(bureau_code) values('0102');
SQL> insert into test(bureau_code) values('0202');
SQL> insert into test(bureau_code) values('0202');
SQL> insert into test(bureau_code) values('0302');
SQL> insert into test(bureau_code) values('0302');
SQL> insert into test(bureau_code) values('0402');
SQL> insert into test(bureau_code) values('0502');
SQL> commit;

SQL> select * from test partition(p1);
BUREAU_CODE          PR
-------------------- --
0101                 01
0102                 01

SQL> set autotrace traceonly
SQL> select * from test partition(p1);
執行計畫
----------------------------------------------------------
Plan hash value: 213508695
----------------------------------------------------------------------------------------------
| Id  | Operation             | Name | Rows  | Bytes | Cost (%CPU)| Time     | Pstart| Pstop |
----------------------------------------------------------------------------------------------
|   0 | SELECT STATEMENT      |      |     2 |    30 |     4   (0)| 00:00:01 |       |       |
|   1 |  PARTITION LIST SINGLE|      |     2 |    30 |     4   (0)| 00:00:01 |    1 |     1 |
|   2 |   TABLE ACCESS FULL   | TEST |     2 |    30 |     4   (0)| 00:00:01 |    1 |     1 |--證明是走了分區的
----------------------------------------------------------------------------------------------
Note
-----
   - dynamic sampling used for this statement (level=2)
統計資訊
----------------------------------------------------------
          0  recursive calls
          0  db block gets
          8  consistent gets
          0  physical reads
          0  redo size
        434  bytes sent via SQL*Net to client
        338  bytes received via SQL*Net from client
          2  SQL*Net roundtrips to/from client
          0  sorts (memory)
          0  sorts (disk)
          2  rows processed


Oracle 11G的間隔分區怎建立 文法

間隔分區只適用於range類型的分區。

CREATE TABLE interval_sales
( prod_id NUMBER(6)
, cust_id NUMBER
, time_id DATE
, channel_id CHAR(1)
, promo_id NUMBER(6)
, quantity_sold NUMBER(3)
, amount_sold NUMBER(10,2)
)
PARTITION BY RANGE (time_id)
INTERVAL(NUMTOYMINTERVAL(1, 'MONTH'))
( PARTITION p0 VALUES LESS THAN (TO_DATE('1-1-2008', 'DD-MM-YYYY')),
PARTITION p1 VALUES LESS THAN (TO_DATE('1-1-2009', 'DD-MM-YYYY')),
PARTITION p2 VALUES LESS THAN (TO_DATE('1-7-2009', 'DD-MM-YYYY')),
PARTITION p3 VALUES LESS THAN (TO_DATE('1-1-2010', 'DD-MM-YYYY')) );
上面的例子表示除了上面已經定義的分區以外,每個月只要有資料,就會建立一個分區。

INTERVAL(NUMTOYMINTERVAL(1, 'MONTH')) 按月
INTERVAL (NUMTODSINTERVAL(1,’day’)) 按天
INTERVAL(NUMTOYMINTERVAL(1, 'YEAR')) 按年
 
oracle中說虛擬列指的是什

Oracle 11g 的新特性 —— 虛擬列
在老的 Oracle 版本,當我們需要使用運算式或者一些計算公式時,我們會建立資料庫檢視,如果我們需要在這個視圖上使用索引,我們會建立基於函數的索引。
現在 Oracle 11g 允許我們直接在表上使用虛擬列來儲存運算式。
虛擬列的值是不儲存在磁碟的,它們是在查詢時根據定義的運算式臨時計算的。

我們不能往虛擬列中插入資料,我們也不能隱式的添加資料到虛擬列:

我們只能使用物理列來插入資料。然後可以查詢虛擬列的值:運算式是在查詢的時候即時計算的.
索引和約束同樣可以應用在虛擬列上。我們也可以為虛擬列建立外鍵。
 

相關文章

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.