11 2017 档案

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 沃德天 阅读(11092) 评论(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 沃德天 阅读(10451) 评论(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 沃德天 阅读(333) 评论(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 沃德天 阅读(1882) 评论(0) 推荐(0)

彻底解决Oracle unable to create INITIAL extent for segment in tablespace xx
摘要:数据库移植过程中出现的问题 unable to create INITIAL extent for segment in tablespace TEST 意思是 TEST 表空间太小了, 而又不能自动扩展 extern 解决方案一: 重新定义表空间大小: ALTER TABLESPACE DATA0 阅读全文

posted @ 2017-11-18 14:05 沃德天 阅读(11625) 评论(0) 推荐(0)

Oracle表空间管理,数据迁移,
摘要:拆迁术: 赶人:delete 扒房:truncate 拆楼:drop drop table xxx 时如果删除不掉,主要是因为约束,需添加cascade constraints analyze table 表名 compute statistics for table 设计术: 设计大楼外形和空闲空 阅读全文

posted @ 2017-11-15 19:08 沃德天 阅读(344) 评论(0) 推荐(0)

导航