oracle 怎么删除强制唯一的索引
发布网友
发布时间:2022-04-19 20:39
我来回答
共2个回答
热心网友
时间:2022-04-08 12:07
先把该索引相关联的约束disable或者drop掉,然后再删就可以了。
热心网友
时间:2022-04-08 13:25
oracle
删除表空间
出现“无法删除用于强制唯一主键的索引”解决方法
--kernelboy
问题现状:
sql>drop
tablespace
表空间名
including
contents
and
datafiles;
ora-00604:
递归
sql
层
1
出现错误。
ora-02429:
无法删除用于强制唯一
/
主键的索引。
解决方案:
一、
select
segment_name,partition_name,tablespace_name
from dba_extents
where
tablespace_name=upper('
表空间名
')