oracle分割槽表學習及應用

3492zhang發表於2006-07-19

本文簡介:選擇自 zikenguo 的 blog

[@more@]
-- create table(建立分割槽表)
create table bill_monthfee_zero
(
serv_id number(20) not null,
billing_cycle_month number(6) not null,
date_type number(1),
acc_nbr varchar2(80)
)
partition by range (billing_cycle_month)
(partition p_200407 values less than (200407)
tablespace ts_ziken
storage(initial 100k next 100k minextents 1 maxextents unlimited pctincrease 0),
partition p_200408 values less than (200408)
tablespace ts_ziken
storage(initial 100k next 100k minextents 1 maxextents unlimited pctincrease 0))
;
create index idx_bill_monthfee_zero_idx01 on bill_monthfee_zero(billing_cycle_month)
tablespace ts_ziken_idx
storage(initial 100k next 100k minextents 1 maxextents unlimited pctincrease 0) nologging;
grant all on bill_monthfee_zero to dxsq_dev;


--增加分割槽表


alter table bill_monthfee_zero add partition p_200409
values less than (200409) tablespace ts_ziken;


--刪除一分割槽
alter table part_tbl drop partition part_tbl_08;

--將一個分割槽分為兩個分割槽
alter table bill_monthfee_zero split partition p_200409 at (200409)
into (partition p_200409_1 tablespace ts_ziken,
partition p_200409_2 tablespace ts_ziken_idx);

--合併分割槽alter table bill_monthfee_zero
merge partitions p_200408, p_200409 into partition p_all

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/345618/viewspace-850574/,如需轉載,請註明出處,否則將追究法律責任。

相關文章