ORA-25319: Queue table repartitioning aborted

2024-08-30 22:08

本文主要是介绍ORA-25319: Queue table repartitioning aborted,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

--ORA-25319: Queue table repartitioning aborted


发生背景:

监控日志时无限刷出
ORA-25319: Queue table repartitioning aborted
error 25319 happened during Queue table repartitioning
Errors in file /u01/app/oracle/diag/rdbms/prod1/PROD1/trace/PROD1_ora_7202.trc  (incident=127448):
ORA-25319: Queue table repartitioning aborted
error 25319 happened during Queue table repartitioning
Fri Dec 30 20:16:04 2016
Errors in file /u01/app/oracle/diag/rdbms/prod1/PROD1/trace/PROD1_ora_7202.trc  (incident=127449):
ORA-25319: Queue table repartitioning aborted
error 25319 happened during Queue table repartitioning
Errors in file /u01/app/oracle/diag/rdbms/prod1/PROD1/trace/PROD1_ora_7202.trc  (incident=127450):
ORA-25319: Queue table repartitioning aborted
error 25319 happened during Queue table repartitioning
Errors in file /u01/app/oracle/diag/rdbms/prod1/PROD1/trace/PROD1_ora_7202.trc  (incident=127451):
ORA-25319: Queue table repartitioning aborted
error 25319 happened during Queue table repartitioning
Errors in file /u01/app/oracle/diag/rdbms/prod1/PROD1/trace/PROD1_ora_7202.trc  (incident=127452):
ORA-25319: Queue table repartitioning aborted
error 25319 happened during Queue table repartitioning
Errors in file /u01/app/oracle/diag/rdbms/prod1/PROD1/trace/PROD1_ora_7202.trc  (incident=127453):
ORA-25319: Queue table repartitioning aborted
error 25319 happened during Queue table repartitioning
Errors in file /u01/app/oracle/diag/rdbms/prod1/PROD1/trace/PROD1_ora_7202.trc  (incident=127454):
ORA-25319: Queue table repartitioning aborted
error 25319 happened during Queue table repartitioning
Errors in file /u01/app/oracle/diag/rdbms/prod1/PROD1/trace/PROD1_ora_7202.trc  (incident=127455):
ORA-25319: Queue table repartitioning aborted
error 25319 happened during Queue table repartitioning
Errors in file /u01/app/oracle/diag/rdbms/prod1/PROD1/trace/PROD1_ora_7202.trc  (incident=127456):
ORA-25319: Queue table repartitioning aborted
error 25319 happened during Queue table repartitioning
Errors in file /u01/app/oracle/diag/rdbms/prod1/PROD1/trace/PROD1_ora_7202.trc  (incident=127457):
ORA-25319: Queue table repartitioning aborted
error 25319 happened during Queue table repartitioning
Errors in file /u01/app/oracle/diag/rdbms/prod1/PROD1/trace/PROD1_ora_7202.trc  (incident=127458):
ORA-25319: Queue table repartitioning aborted
error 25319 happened during Queue table repartitioning
DDE: Problem Key 'ORA 25319' was completely flood controlled (0x6)
Further messages for this problem key will be suppressed for up to 10 minutes
error 25319 happened during Queue table repartitioning
error 25319 happened during Queue table repartitioning
error 25319 happened during Queue table repartitioning
error 25319 happened during Queue table repartitioning
error 25319 happened during Queue table repartitioning
error 25319 happened during Queue table repartitioning
error 25319 happened during Queue table repartitioning
error 25319 happened during Queue table repartitioning
error 25319 happened during Queue table repartitioning
error 25319 happened during Queue table repartitioning

解决方法及过程:

[oracle@ocm1 ~]$ sqlplus sys/oracle@prod1 as sysdbaSQL*Plus: Release 11.2.0.3.0 Production on Fri Dec 30 20:18:25 2016Copyright (c) 1982, 2011, Oracle.  All rights reserved.Connected to:
Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - Production
With the Partitioning, OLAP, Data Mining and Real Application Testing optionsSYS@prod1> select file#,to_char(checkpoint_change#,'999999999999') from v$datafile;FILE# TO_CHAR(CHECK
---------- -------------1    43001059062    43001059063    43001059064    43001059065    42999028056    43001059067    43001059068    43001059069    430010590610    430010590611    430010590612    430010590613    430010590614    430010590615    430010590616    430010590617    430010590618    430010590618 rows selected.SYS@prod1> select file#,online_status,to_char(change#,'999999999999') from v$recover_file;FILE# ONLINE_ TO_CHAR(CHANG
---------- ------- -------------5 OFFLINE	       0SYS@prod1> recover datafile 5;  --尝试恢复数据文件5
ORA-00283: recovery session canceled due to errors
ORA-00264: no recovery requiredSYS@prod1> ALTER TABLESPACE EXAMPLE ONLINE;  [oracle@ocm1 ~]$ sqlplus sys/oracle@prod1 as sysdbaSQL*Plus: Release 11.2.0.3.0 Production on Fri Dec 30 20:19:48 2016Copyright (c) 1982, 2011, Oracle.  All rights reserved.Connected to:
Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - Production
With the Partitioning, OLAP, Data Mining and Real Application Testing optionsSYS@prod1> select file#,online_status,to_char(change#,'999999999999') from v$recover_file;no rows selected

解决完成日志不再报错。


参考资料:http://www.xifenfei.com/2011/12/%E6%A8%A1%E6%8B%9F%E8%B7%A8resetlogs%E6%81%A2%E5%A4%8D.html

这篇关于ORA-25319: Queue table repartitioning aborted的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1122064

相关文章

MySQL CTE (Common Table Expressions)示例全解析

《MySQLCTE(CommonTableExpressions)示例全解析》MySQL8.0引入CTE,支持递归查询,可创建临时命名结果集,提升复杂查询的可读性与维护性,适用于层次结构数据处... 目录基本语法CTE 主要特点非递归 CTE简单 CTE 示例多 CTE 示例递归 CTE基本递归 CTE 结

MySQL 8 中的一个强大功能 JSON_TABLE示例详解

《MySQL8中的一个强大功能JSON_TABLE示例详解》JSON_TABLE是MySQL8中引入的一个强大功能,它允许用户将JSON数据转换为关系表格式,从而可以更方便地在SQL查询中处理J... 目录基本语法示例示例查询解释应用场景不适用场景1. ‌jsON 数据结构过于复杂或动态变化‌2. ‌性能要

解决1093 - You can‘t specify target table报错问题及原因分析

《解决1093-Youcan‘tspecifytargettable报错问题及原因分析》MySQL1093错误因UPDATE/DELETE语句的FROM子句直接引用目标表或嵌套子查询导致,... 目录报js错原因分析具体原因解决办法方法一:使用临时表方法二:使用JOIN方法三:使用EXISTS示例总结报错原

Java实现自定义table宽高的示例代码

《Java实现自定义table宽高的示例代码》在桌面应用、管理系统乃至报表工具中,表格(JTable)作为最常用的数据展示组件,不仅承载对数据的增删改查,还需要配合布局与视觉需求,而JavaSwing... 目录一、项目背景详细介绍二、项目需求详细介绍三、相关技术详细介绍四、实现思路详细介绍五、完整实现代码

MySQL的ALTER TABLE命令的使用解读

《MySQL的ALTERTABLE命令的使用解读》:本文主要介绍MySQL的ALTERTABLE命令的使用,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录1、查看所建表的编China编程码格式2、修改表的编码格式3、修改列队数据类型4、添加列5、修改列的位置5.1、把列

golang实现延迟队列(delay queue)的两种实现

《golang实现延迟队列(delayqueue)的两种实现》本文主要介绍了golang实现延迟队列(delayqueue)的两种实现,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的... 目录1 延迟队列:邮件提醒、订单自动取消2 实现2.1 simplChina编程e简单版:go自带的time

Pandas透视表(Pivot Table)的具体使用

《Pandas透视表(PivotTable)的具体使用》透视表用于在数据分析和处理过程中进行数据重塑和汇总,本文就来介绍一下Pandas透视表(PivotTable)的具体使用,感兴趣的可以了解一下... 目录前言什么是透视表?使用步骤1. 引入必要的库2. 读取数据3. 创建透视表4. 查看透视表总结前言

GORM中Model和Table的区别及使用

《GORM中Model和Table的区别及使用》Model和Table是两种与数据库表交互的核心方法,但它们的用途和行为存在著差异,本文主要介绍了GORM中Model和Table的区别及使用,具有一... 目录1. Model 的作用与特点1.1 核心用途1.2 行为特点1.3 示例China编程代码2. Tab

C++——stack、queue的实现及deque的介绍

目录 1.stack与queue的实现 1.1stack的实现  1.2 queue的实现 2.重温vector、list、stack、queue的介绍 2.1 STL标准库中stack和queue的底层结构  3.deque的简单介绍 3.1为什么选择deque作为stack和queue的底层默认容器  3.2 STL中对stack与queue的模拟实现 ①stack模拟实现

ActiveMQ—Queue与Topic区别

Queue与Topic区别 转自:http://blog.csdn.net/qq_21033663/article/details/52458305 队列(Queue)和主题(Topic)是JMS支持的两种消息传递模型:         1、点对点(point-to-point,简称PTP)Queue消息传递模型:         通过该消息传递模型,一个应用程序(即消息生产者)可以