当前位置:网站首页>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
- 2022多校第二场 K题 Link with Bracket Sequence I
- tensor.nozero(),面具,面具
- tiup status
- node使用redis
- Software Testing Interview Questions: What do you think about software process improvement? Is there something that needs improvement in the enterprise you have worked for? What do you expect the idea
- 内存取证系列1
- 软件测试面试题:您如何看待软件过程改进?在您曾经工作过的企业中,是否有一些需要改进的东西呢?您期望的理想的测试人员的工作环境是怎样的?
- JVM类加载简介
- Helm Chart
猜你喜欢

面试汇总:为何大厂面试官总问 Framework 的底层原理?

2022 Hangzhou Electric Power Multi-School Session 3 K Question Taxi

《WEB安全渗透测试》(28)Burp Collaborator-dnslog外带技术

QSunSync Qiniu cloud file synchronization tool, batch upload

oracle创建用户
![[230]连接Redis后执行命令错误 MISCONF Redis is configured to save RDB snapshots](/img/fa/5bdc81b1ebfc22d31f42da34427f3e.png)
[230]连接Redis后执行命令错误 MISCONF Redis is configured to save RDB snapshots

活动推荐 | 快手StreamLake品牌发布会,8月10日一起见证!

SV 类的虚方法 多态

码率vs.分辨率,哪一个更重要?

5.PCIe官方示例
随机推荐
5.PCIe官方示例
Software testing interview questions: What are the three modules of LoadRunner?
Software Testing Interview Questions: Qualifying Criteria for Software Acceptance Testing?
"WEB Security Penetration Testing" (28) Burp Collaborator-dnslog out-band technology
Difference between MBps and Mbps
About I double-checked and reviewed the About staff page, returning an industry question
E - Many Operations (bitwise consideration + dp thought to record the result after the operation
leetcode: 269. The Martian Dictionary
B站7月榜单丨飞瓜数据B站UP主排行榜发布!
动态规划/背包问题总结/小结——01背包、完全背包
TinyMCE disable escape
OPENWIFI实践1:下载并编译SDRPi的HDL源码
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
leetcode:269. 火星词典
node使用redis
Software testing interview questions: What are the seven-layer network protocols?
Software testing interview questions: How many types of software are there?
Opencv——视频跳帧处理
PCIe 核配置
The method of freely controlling concurrency in the sync package in GO