删除具有全局索引的分区表?

时间:2019-01-11 14:07:40

标签: oracle indexing plsql partitioning

PROCEDURE purge_partitions
   (
      p_owner            IN VARCHAR2
     ,p_name             IN VARCHAR2
     ,p_retention_period IN NUMBER
   ) IS
   BEGIN
      FOR partition_rec IN (SELECT partition_name
                                  ,high_value
                              FROM dba_tab_partitions
                             WHERE table_owner = p_owner
                               AND table_name = p_name)

      LOOP
         IF SYSDATE >= add_months(to_date(substr(partition_rec.high_value
                                                ,12
                                                ,19)
                                         ,'YYYY-MM-DD HH24:MI:SS')
                                 ,p_retention_period)
         THEN
            execute_immediate('ALTER TABLE ' || p_owner || '.' ||
                              p_name || ' DROP PARTITION ' ||
                              partition_rec.partition_name)
         END IF;
      END LOOP;
   END purge_partitions;

Purge_Partitions过程处理基于以下内容删除分区 在单独的配置表中提到的特定保留原则。我是 现在尝试增强此功能,这将解决 重建那些分区表的全局索引。不确定如何执行此操作,非常感谢您的帮助。

1 个答案:

答案 0 :(得分:3)

考虑使用update_index_clauses,该索引可以使索引保持有效。

请参阅文档和有关全局索引的注意事项here

在您的情况下为:

 alter table ttttt drop partition pppppp update global indexes;

或者让索引在DROP PARTITION中无效,然后用alter index xxx rebuild重建它们。您可以从该查询中获取要重建的索引列表

select OWNER, INDEX_NAME  
from all_indexes 
where owner = 'ooo' and table_name = 'tttttt' and status = 'UNUSABLE';