通過shell檢查Oracle分區表中是否含有預設分區

來源:互聯網
上載者:User

通過shell檢查Oracle分區表中是否含有預設分區

在大資料量的系統中,分區表是很常見的,分區有多種類型,可以根據業務來選擇自己需要的分區,不過為了資料的相容性,需要考慮對於分區表設定一個預設的表分區,如果資料在插入表分區的時候,沒有合格分區,就會插入預設的表分區中。

這個可以根據自己的需要來設定,如果確實對資料有嚴格的要求,甚至可以要求不加入預設的分區。

以下的指令碼會去"掃描"分區的資訊,如果檢測到沒有預設的分區,就會產生對應的指令碼。

可以根據自己的情況來決定是否需要加入分區。

sqlplus -s $1/$2@$SH_DB_SID <<EOF
 set head off
 set pages 100
 set linesize 200
 /* bad performance
 select name,Count(*)from user_part_key_columns where object_type='TABLE' and name in
 (
 select table_name from user_tables where partitioned='YES'
 minus
  (select distinct  table_name
 from user_tab_partitions where  partition_name like '%MAX%'
  )
 )
 group by name;
 */
 select 'alter table  '||table_name||' add partition  PMAXVALUE  values less than ('||
 decode(col_count, 1, 'MAXVALUE',
                                                          2,'MAXVALUE,MAXVALUE',
                                                          3,'MAXVALUE,MAXVALUE,MAXVALUE',
                                                          4,'MAXVALUE,MAXVALUE,MAXVALUE,MAXVALUE','partition out of range')||');'
    from
 (
 (
 select t1.table_name,count(t2.name) col_count from user_tables t1,user_part_key_columns t2
 where t1.partitioned='YES'
 and t1.table_name=t2.name
 and t2.object_type='TABLE'
 group by t1.table_name
 )
 minus
  (
  select  t2.name table_name,count(t2.name)col_count
 from user_tab_partitions t1,user_part_key_columns t2
 where  t1.partition_name like '%MAX%'
 and t1.table_name=t2.name
 and t2.object_type='TABLE'
 group by t2.name
  )
 )
 /

EOF
 exit

 簡單運行一下,可以看到有一些分區表是滅有預設的分區的。可以根據自己的情況來定奪。

[ora11g@rac1 dbm_lite]$ ksh getmaxpar.sh system Oracle

alter table  LOGMNRC_GSBA add partition  PMAXVALUE  values less than (MAXVALUE);
 alter table  LOGMNRC_GSII add partition  PMAXVALUE  values less than (MAXVALUE);
 alter table  LOGMNRC_GTCS add partition  PMAXVALUE  values less than (MAXVALUE);
 alter table  LOGMNRC_GTLO add partition  PMAXVALUE  values less than (MAXVALUE);
 alter table  LOGMNRP_CTAS_PART_MAP add partition  PMAXVALUE  values less than (MAXVALUE);
 alter table  LOGMNR_ATTRCOL$ add partition  PMAXVALUE  values less than (MAXVALUE);
 alter table  LOGMNR_ATTRIBUTE$ add partition  PMAXVALUE  values less than (MAXVALUE);
 alter table  LOGMNR_CCOL$ add partition  PMAXVALUE  values less than (MAXVALUE);
 alter table  LOGMNR_CDEF$ add partition  PMAXVALUE  values less than (MAXVALUE);
 alter table  LOGMNR_COL$ add partition  PMAXVALUE  values less than (MAXVALUE);
 alter table  LOGMNR_COLTYPE$ add partition  PMAXVALUE  values less than (MAXVALUE);
 alter table  LOGMNR_DICTIONARY$ add partition  PMAXVALUE  values less than (MAXVALUE);
 alter table  LOGMNR_DICTSTATE$ add partition  PMAXVALUE  values less than (MAXVALUE);
 alter table  LOGMNR_ENC$ add partition  PMAXVALUE  values less than (MAXVALUE);
 alter table  LOGMNR_ICOL$ add partition  PMAXVALUE  values less than (MAXVALUE);

淺談Oracle分區表之定界分割

Oracle分區表遷移

Oracle分區表使用執行個體

Oracle分區表 (Partition Table) 的建立及管理

相關文章

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.