当前位置:网站首页>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了
边栏推荐
- 软件测试面试题:设计测试用例时应该考虑哪些方面,即不同的测试用例针对那些方面进行测试?
- matlab 采用描点法进行数据模拟和仿真
- 子连接中的参数传递
- 软件测试面试题:LoadRunner 分为哪三个模块?
- 软件测试面试题:系统测试的策略有?
- 【论文笔记】—低照度图像增强—Unsupervised—EnlightenGAN—2019-TIP
- leetcode: 269. The Martian Dictionary
- Software testing interview questions: What stages should a complete set of tests consist of?
- gorm的Raw与scan
- 【FreeRTOS】FreeRTOS与stm32内置堆栈的占用情况
猜你喜欢
简单的顺序结构程序(C语言)
QSunSync Qiniu cloud file synchronization tool, batch upload
oracle create user
MongoDB construction and basic operations
Countdown to 1 day!From August 2nd to 4th, I will talk with you about open source and employment!
倒计时1天!8月2日—4日与你聊聊开源与就业那些事!
子连接中的参数传递
JUC thread pool (1): FutureTask use
leetcode: 266. All Palindromic Permutations
元宇宙:未来我们的每一个日常行为是否都能成为赚钱工具?
随机推荐
克服项目管理中恐惧心理
STC89C52RC的P4口的应用问题
元宇宙:未来我们的每一个日常行为是否都能成为赚钱工具?
软件测试面试题:BIOS, Fat, IDE, Sata, SCSI, Ntfs windows NT?
2022牛客多校第三场 A Ancestor
oracle创建表空间
[idea] idea configures sql formatting
Software Testing Interview Questions: What's the Key to a Good Test Plan?
leetcode: 266. All Palindromic Permutations
Inter-process communication and inter-thread communication
The method of freely controlling concurrency in the sync package in GO
软件开发工具的技术要素
2022杭电多校第三场 L题 Two Permutations
Mysql_13 事务
2022杭电多校 第三场 B题 Boss Rush
标识符、关键字、常量 和变量(C语言)
软件测试面试题:软件验收测试的合格通过准则?
《WEB安全渗透测试》(28)Burp Collaborator-dnslog外带技术
Mysql_12 多表查询
E - Distance Sequence (前缀和优化dp