当前位置:网站首页>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了
边栏推荐
- TinyMCE disable escape
- could not build server_names_hash, you should increase server_names_hash_bucket_size: 32
- tensor.nozero(), mask, [mask]
- SV class virtual method of polymorphism
- E - Distance Sequence (prefix and optimized dp
- QSunSync 七牛云文件同步工具,批量上传
- 2022杭电多校第三场 K题 Taxi
- JUC thread pool (1): FutureTask use
- E - Many Operations (按位考虑 + dp思想记录操作后的结果
- leetcode:266. 回文全排列
猜你喜欢
随机推荐
MongoDB construction and basic operations
面试汇总:为何大厂面试官总问 Framework 的底层原理?
Binary tree [full solution] (C language)
2022杭电多校 第三场 B题 Boss Rush
【无标题】
金九银十面试跳槽季;你准备好了吗?
leetcode: 266. All Palindromic Permutations
2022杭电多校第三场 L题 Two Permutations
2022牛客多校第三场 J题 Journey
gorm joint table query - actual combat
2022 Nioke Multi-School Training Session 2 J Question Link with Arithmetic Progression
4. PCIe 接口时序
TinyMCE禁用转义
Software testing interview questions: What is the difference between load testing, capacity testing, and strength testing?
Software Testing Interview Questions: What is Software Testing?The purpose and principle of software testing?
tiup update
### Error querying database. Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionExcep
[FreeRTOS] FreeRTOS and stm32 built-in stack occupancy
GO中sync包自由控制并发的方法
Software Testing Interview Questions: What aspects should be considered when designing test cases, i.e. what aspects should different test cases test against?