当前位置:网站首页>ORA-00604 ORA-02429
ORA-00604 ORA-02429
2022-08-05 00:45:00 【Drunken white】
问题
Error when deleting tablespace
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='Tablespace names are capitalized'
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:
Capitalization doesn't work either...
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.
注意要大写
Then delete the indexOK了
边栏推荐
- 软件测试面试题:手工测试与自动测试有哪些区别?
- Memory Forensics Series 1
- "WEB Security Penetration Testing" (28) Burp Collaborator-dnslog out-band technology
- 软件测试面试题:一套完整的测试应该由哪些阶段组成?
- Raw and scan of gorm
- 2022多校第二场 K题 Link with Bracket Sequence I
- Software Testing Interview Questions: What do test cases usually include?
- JUC thread pool (1): FutureTask use
- Opencv——视频跳帧处理
- 阶段性测试完成后,你进行缺陷分析了么?
猜你喜欢
gorm joint table query - actual combat
SV class virtual method of polymorphism
Helm Chart
TinyMCE禁用转义
4. PCIe 接口时序
If capturable=False, state_steps should not be CUDA tensors
JVM类加载简介
### Error querying database. Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionExcep
Redis visual management software Redis Desktop Manager2022
[idea] idea configures sql formatting
随机推荐
Software Testing Interview Questions: Qualifying Criteria for Software Acceptance Testing?
2022杭电多校训练第三场 1009 Package Delivery
Binary tree [full solution] (C language)
leetcode:267. 回文排列 II
torch.autograd.grad求二阶导数
Software Testing Interview Questions: What aspects should be considered when designing test cases, i.e. what aspects should different test cases test against?
Lattice PCIe 学习 1
NMS原理及其代码实现
Software Testing Interview Questions: What Are the Types of Software Testing?
Theory of Software Fundamentals
Software testing interview questions: What are the seven-layer network protocols?
Will domestic websites use Hong Kong servers be blocked?
软件测试面试题:请你分别画出 OSI 的七层网络结构图和 TCP/IP 的四层结构图?
QSunSync 七牛云文件同步工具,批量上传
Memory Forensics Series 1
2022 Hangzhou Electric Multi-School 1004 Ball
node uses redis
JVM类加载简介
2022 Multi-school Second Session K Question Link with Bracket Sequence I
Software testing interview questions: What are the three modules of LoadRunner?