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的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消息传递模型:         通过该消息传递模型,一个应用程序(即消息生产者)可以

vue2实践:el-table实现由用户自己控制行数的动态表格

需求 项目中需要提供一个动态表单,如图: 当我点击添加时,便添加一行;点击右边的删除时,便删除这一行。 至少要有一行数据,但是没有上限。 思路 这种每一行的数据固定,但是不定行数的,很容易想到使用el-table来实现,它可以循环读取:data所绑定的数组,来生成行数据,不同的是: 1、table里面的每一个cell,需要放置一个input来支持用户编辑。 2、最后一列放置两个b

ora-01017 ora-02063 database link,oracle11.2g通过dblink连接oracle11.2g

错误图示: 问题解决 All database links, whether public or private, need username/password of the remote/target database. Public db links are accessible by all accounts on the local database, while private

Java-数据结构-栈和队列-Stack和Queue (o゚▽゚)o

文本目录: ❄️一、栈(Stack):     ▶ 1、栈的概念:   ▶ 2、栈的使用和自实现:      ☑ 1)、Stack():       ☑ 2)、push(E e):      ☑ 3)、empty():         ☑ 4)、peek(E e):        ☑ 5)、pop(E e):       ☑ 6)、size(E e):  ▶ 3、栈自实现的总代

ORA-25150:不允许对区参数执行ALTERING

在用PL/SQL工具修改表存储报错: 百度一下找到原因: 表空间使用本地管理,其中的表不能修改NEXT MAXEXTENTS和PCTINCREASE参数 使用数据自动管理的表空间,其中的表可以修改NEXT MAXEXTENTS和PCTINCREASE参数