2017年11月20日

Oracle的hash分区

摘要: 创建hash分区: create table hash_part_tab (id number,deal_date date,area_code number,nbr number,contents varchar2(4000)) partition by hash (deal_date) PART 阅读全文

posted @ 2017-11-20 19:17 沃德天 阅读(11080) 评论(0) 推荐(0)

Oracle的list分区

摘要: 创建list分区: create table list_part_tab (id number,deal_date date,area_code number,nbr number,contents varchar2(4000)) partition by list (area_code) ( pa 阅读全文

posted @ 2017-11-20 19:02 沃德天 阅读(10435) 评论(0) 推荐(0)

range联合分区

摘要: 创建range联合分区: create table range_part_mult_col_tab (id number,deal_date date,area_code number,nbr number,contents varchar2(4000)) partition by range (a 阅读全文

posted @ 2017-11-20 18:27 沃德天 阅读(331) 评论(0) 推荐(0)

Oracle分区表range单分区

摘要: 分区类型:rang、list、hash sql语句:select partitioning_type, subpartitioning_type,partition_count from user_part_tables where table_name ='RANGE_PART_TAB'; 子分区 阅读全文

posted @ 2017-11-20 17:16 沃德天 阅读(1878) 评论(0) 推荐(0)

导航