今天在删除表空间时遭遇报错ora-00604ora-02429,下面分享一下解决问题的过程。
今天在删除表空间时遭遇报错ora-00604&ora-02429,,下面分享一下解决问题的过程。
测试环境
我在oracle 10g+windows server 2008 standard r2进行操作。
sql>
sql> select * from v$version;
banner
----------------------------------------------------------------
oracle database 10g enterprise edition release 10.2.0.4.0 - 64bi
pl/sql release 10.2.0.4.0 - production
core 10.2.0.4.0 production
tns for 64-bit windows: version 10.2.0.4.0 - production
nlsrtl version 10.2.0.4.0 - production
sql>
1.删除表空间报错
我在执行drop tablespace语句时,数据库报错,提示:
“ora-00604: 递归 sql 级别 1 出现错误
ora-02429: 无法删除用于强制唯一/主键的索引”。
根据报错,我添加了cascade constraints选项,依然报错。过程如下:
sql> drop tablespace hoegh;
drop tablespace hoegh
*
第 1 行出现错误:
ora-01549: 表空间非空, 请使用 including contents 选项
sql> drop tablespace hoegh including contents;
drop tablespace hoegh including contents
*
第 1 行出现错误:
ora-00604: 递归 sql 级别 1 出现错误
ora-02429: 无法删除用于强制唯一/主键的索引
sql>
sql> drop tablespace hoegh including contents cascade constraints;
drop tablespace hoegh including contents cascade constraints
*
第 1 行出现错误:
ora-00604: 递归 sql 级别 1 出现错误
ora-02429: 无法删除用于强制唯一/主键的索引
sql>
2.查找唯一/主键索引
通常来说,同时报多个错误都是由其中一个引起的。接下来,我们要查一下存储在hoegh表空间的唯一/主键索引。如下所示:
sql> select 'alter table '||owner||'.'||table_name||' drop constraint '||constraint_name||' ;'
2 from dba_constraints
3 where constraint_type in ('u', 'p')
4 and (index_owner, index_name) in
5 (select owner, segment_name
6 from dba_segments
7 where tablespace_name = 'hoegh');
'altertable'||owner||'.'||table_name||'dropconstraint'||constraint_name||';'
-----------------------------------------------------------------------------------------------------
alter table hoegh.hoegh drop constraint pk_hoegh ;
alter table hoegh1.hoegh drop constraint pk_hoegh ;
alter table hoegh2.hoegh drop constraint pk_hoegh ;
sql>
从查询结果来看,该表空间包含3个主键索引。
3.删除唯一/主键索引
根据上面的查询结果,删除唯一/主键索引。如下所示:
sql> alter table hoegh.hoegh drop constraint pk_hoegh ;
表已更改。
sql> alter table hoegh1.hoegh drop constraint pk_hoegh ;
表已更改。
sql> alter table hoegh2.hoegh drop constraint pk_hoegh ;
表已更改。
sql>
4.成功删除表空间
再次执行drop tablespace语句,成功。
sql>
sql> drop tablespace hoegh including contents cascade constraints;
表空间已删除。
sql>
本文永久更新链接地址: