重庆思庄Oracle、Redhat认证学习论坛

 找回密码
 注册

QQ登录

只需一步,快速开始

搜索
查看: 939|回复: 0
打印 上一主题 下一主题

[Oracle] Drop Tablespace Failed with ORA-02429: cannot drop index used for enforce of uq

[复制链接]
跳转到指定楼层
楼主
发表于 2021-8-12 01:26:17 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
Drop Tablespace Failed with ORA-02429: cannot drop index used for enforcement of unique/primary key (Doc ID 1918060.1)




In this Document

Goal

Solution


APPLIES TO:

Oracle Database Cloud Schema Service - Version N/A and later

Oracle Database Exadata Cloud Machine - Version N/A and later

Oracle Cloud Infrastructure - Database Service - Version N/A and later

Oracle Database Cloud Exadata Service - Version N/A and later

Oracle Database Backup Service - Version N/A and later

Information in this document applies to any platform.

*** Checked for relevance on 22-Mar-2016 ***

GOAL

Dropping a tablespace fails with below error:


SQL> DROP TABLESPACE <tablespace_name> INCLUDING CONTENTS AND DATAFILES;

DROP TABLESPACE <tablespace_name> INCLUDING CONTENTS AND DATAFILES

*

ERROR at line 1:

ORA-00604: error occurred at recursive SQL level 1

ORA-02429: cannot drop index used for enforcement of unique/primary key



SOLUTION

Find the constraint name for the unique/primary key, disable the constraint and drop the tablespace again.


Steps:

=====

1) Execute below query to find the constraint name:


SQL> select owner, constraint_name,table_name,index_owner,index_name

from dba_constraints

where (index_owner,index_name) in (select owner,index_name from dba_indexes

where tablespace_name='<tablespace_name>');


2) Disable the constraint:


SQL> ALTER TABLE <owner>.<table_name> DISABLE CONSTRAINT <constraint_name>;


3) Drop the tablespace:


SQL> DROP TABLESPACE <tablespace_name> INCLUDING CONTENTS AND DATAFILES;  


分享到:  QQ好友和群QQ好友和群 QQ空间QQ空间 腾讯微博腾讯微博 腾讯朋友腾讯朋友
收藏收藏 支持支持 反对反对
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

QQ|手机版|小黑屋|重庆思庄Oracle、Redhat认证学习论坛 ( 渝ICP备12004239号-4 )

GMT+8, 2024-4-24 13:24 , Processed in 0.143301 second(s), 20 queries .

重庆思庄学习中心论坛-重庆思庄科技有限公司论坛

© 2001-2020

快速回复 返回顶部 返回列表