暂无图片
暂无图片
暂无图片
暂无图片
暂无图片

ORA-14405: partitioned index contains partitions in a different tablespace

原创 不吃草的牛_Nick 2022-08-21
668

oerr ora 14405
14405, 00000, "partitioned index contains partitions in a different tablespace"
// *Cause: An attempt was made to drop a tablespace which contains indexes
// whose partitions are not completely contained in this tablespace,
// and which are defined on the tables which are completely contained
// in this tablespace.
// *Action: find indexes with partitions which span the tablespace being
// dropped and some other tablespace(s). Drop these indexes, or move
// the index partitions to a different tablespace, or find the tables
// on which the indexes are defined, and drop (or move) them.

查询 dba_segments中,表空间 xxx 已经没有存储任何对象.
select segment_name,segment_type from dba_segments where tablespace_name='xxx';

然后查询 dba_ind_partitions 中,又能看到一个分区索引还在表空间中.
select index_name,index_owner from dba_ind_partitions where tablespace_name='xxx';

再次重建该分区索引
select partition_name from dba_segments where segment_name='xxx';
alter index idx_xxx rebuild partition xxx_000 tablespace users;
select index_name,index_owner from dba_ind_partitions where tablespace_name='xxx';

再次 drop 表空间以及数据文件
drop tablespace xxx including contents and datafiles;

------------------
方法1:
exec dbms_tts.transport_set_check('PART4_NDX_TS',incl_constraints => true,full_check => true);
select * from transport_set_violations;

根据结果,删除对应索引
drop index SCOTT.EMPLOYEE_IND_DEPTNO;

select owner,constraint_name,constraint_type,table_name,status from dba_constraints where index_name in (select index_name from dba_indexes where tablespace_name=upper('tools'));

alter table owner.table_name disable constraint constraint_name;




「喜欢这篇文章,您的关注和赞赏是给作者最好的鼓励」
关注作者
【版权声明】本文为墨天轮用户原创内容,转载时必须标注文章的来源(墨天轮),文章链接,文章作者等基本信息,否则作者和墨天轮有权追究责任。如果您发现墨天轮中有涉嫌抄袭或者侵权的内容,欢迎发送邮件至:contact@modb.pro进行举报,并提供相关证据,一经查实,墨天轮将立刻删除相关内容。

评论