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

相关文章

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参数

通过Ajax请求后台数据,返回JSONArray(JsonObject),页面(Jquery)以table的形式展示

点击“会商人员情况表”,弹出层,显示一个表格,如下图: 利用Ajax和Jquery和JSONArray和JsonObject来实现: 代码如下: 在hspersons.html中: <!DOCTYPE html><html><head><meta charset="UTF-8"><title>会商人员情况表</title><script type="text/javasc

ORA-01861:文字与格式字符串不匹配

select t.*, t.rowid from log_jk_dtl t; insert into log_jk_dtl (rq,zy,kssj,jssj,memo)  values (to_date(sysdate,'yyyy-mm-dd'),'插入供应商', to_char(sysdate,'hh24:mi:ss'),to_char(sysdate,'hh24:mi:ss'),'备注'

利用PL/SQL工具连接Oracle数据库的时候,报错:ORA-12638: 身份证明检索失败的解决办法

找到相对应的安装目录:比如:E:\oracle\product\10.2.0\client_1\NETWORK\ADMIN 在里面找到:SQLNET.AUTHENTICATION_SERVICES= (NTS) 将其更改为:SQLNET.AUTHENTICATION_SERVICES= (BEQ,NONE) 或者注释掉:#SQLNET.AUTHENTICATION_SERVICES= (N

UVa 10820 Send a Table (Farey数列欧拉函数求和)

这里先说一下欧拉函数的求法 先说一下筛选素数的方法 void Get_Prime(){ /*筛选素数法*/for(int i = 0; i < N; i++) vis[i] = 1;vis[0] = vis[1] = 0;for(int i = 2; i * i < N; i++)if(vis[i]){for(int j = i * i; j < N; j += i)vis[j] =