当前位置:网站首页>ora-00604 ora-02429
ora-00604 ora-02429
2022-08-05 00:35:00 【喝醉酒的小白】
问题
删除表空间报错
oerr ora 00604
00604, 00000, "error occurred at recursive SQL level %s"
// *Cause: An error occurred while processing a recursive SQL statement
// (a statement applying to internal dictionary tables).
// *Action: If the situation described in the next error on the stack
// can be corrected, do so; otherwise contact Oracle Support.
oerr ora 02429
02429, 00000, "cannot drop index used for enforcement of unique/primary key"
// *Cause: user attempted to drop an index that is being used as the
// enforcement mechanism for unique or primary key.
// *Action: drop the constraint instead of the index.
解决思路
select * from (select owner,segment_name,segment_type,sum(bytes)/1024/1024/1024 GB
from dba_segments
where tablespace_name='表空间名称大写'
group by owner,segment_name,segment_type order by 4 desc )
where rownum <10;
oerr ora 01418
01418, 00000, "specified index does not exist"
// *Cause:
// *Action:
大写也不好使。。。
set long 9999
select dbms_metadata.get_ddl('INDEX','索引名称','用户') from dual;
oerr ora 02443
02443, 00000, "Cannot drop constraint - nonexistent constraint"
// *Cause: alter table drop constraint <constraint_name>
// *Action: make sure you supply correct constraint name.
注意要大写
再删除索引就OK了
边栏推荐
- 【无标题】
- tiup update
- leetcode: 267. Palindromic permutations II
- 2022 Multi-school Second Session K Question Link with Bracket Sequence I
- 软件测试面试题:什么是软件测试?软件测试的目的与原则?
- 僵尸进程和孤儿进程
- TinyMCE disable escape
- 2022 Hangzhou Electric Power Multi-School Session 3 Question L Two Permutations
- ARC129E Yet Another Minimization 题解 【网络流笔记】
- Software testing interview questions: Have you used some tools for software defect (Bug) management in your past software testing work? If so, please describe the process of software defect (Bug) trac
猜你喜欢
随机推荐
2022牛客多校训练第二场 L题 Link with Level Editor I
Software Testing Interview Questions: What is Software Testing?The purpose and principle of software testing?
标识符、关键字、常量 和变量(C语言)
电子行业MES管理系统的主要功能与用途
【unity编译器扩展之模型动画拷贝】
Software Testing Interview Questions: What aspects should be considered when designing test cases, i.e. what aspects should different test cases test against?
[FreeRTOS] FreeRTOS and stm32 built-in stack occupancy
Software testing interview questions: test life cycle, the test process is divided into several stages, and the meaning of each stage and the method used?
Software Testing Interview Questions: About Automated Testing Tools?
matlab中rcosdesign函数升余弦滚降成型滤波器
tiup telemetry
2 用D435i运行VINS-fusion
软件测试面试题:软件验收测试的合格通过准则?
Software test interview questions: BIOS, Fat, IDE, Sata, SCSI, Ntfs windows NT?
leetcode经典例题——单词拆分
D - I Hate Non-integer Number (count of selected number dp
JUC thread pool (1): FutureTask use
《WEB安全渗透测试》(28)Burp Collaborator-dnslog外带技术
QSunSync 七牛云文件同步工具,批量上传
2022 Hangzhou Electric Multi-School 1004 Ball





![[FreeRTOS] FreeRTOS and stm32 built-in stack occupancy](/img/33/3177b4c3de34d4920d741fed7526ee.png)


