Error 942 occured during Initialization of Bufq KUPC$S_1_20181023155636

来源:https://www.cnblogs.com/kerrycode/archive/2019/08/11/11335154.html
-Advertisement-
Play Games

一臺ORACLE實例(Oracle Database 10g Release 10.2.0.5.0)啟動時,報“Error 942 occured during Initialization of Bufq KUPC$S_1_20181023155636”錯誤,具體情況如下所示,內容信息來自告警日誌... ...


 

一臺ORACLE實例(Oracle Database 10g Release 10.2.0.5.0)啟動時,報Error 942 occured during Initialization of Bufq KUPC$S_1_20181023155636錯誤,具體情況如下所示,內容信息來自告警日誌

 

SMON: enabling cache recovery

Thu Aug 08 18:57:04 CST 2019

Successfully onlined Undo Tablespace 1.

Thu Aug 08 18:57:04 CST 2019

SMON: enabling tx recovery

Thu Aug 08 18:57:04 CST 2019

Database Characterset is UTF8

replication_dependency_tracking turned off (no async multimaster replication found)

Error 942 occured during Initialization of Bufq KUPC$S_1_20181023155636

Starting background process QMNC

QMNC started with pid=80, OS id=1777

Thu Aug 08 18:57:06 CST 2019

Completed: ALTER DATABASE OPEN

Thu Aug 08 18:57:06 CST 2019

db_recovery_file_dest_size of 81920 MB is 0.00% used. This is a

user-specified limit on the amount of space that will be used by this

database for recovery-related files, and does not reflect the amount of

space available in the underlying filesystem or ASM diskgroup.

Thu Aug 08 19:00:57 CST 2019

Thread 1 advanced to log sequence 279278 (LGWR switch)

 

查了一下metalink官方字元,發現官方文檔有這方面的資料,出現這個問題是因為 A datapump queue is invalid or it doesn't exist.  The problem occurs during the buffered queue initialization.,詳情如下所示:

 

 

Errors ORA-31623 And ORA-600 [kwqbgqc: bad state] During DataPump Export Or Import (文檔 ID 754401.1)原文如下:

 

APPLIES TO:

Oracle Server - Enterprise Edition - Version: 10.2.0.4 and later [Release: 10.2 and later ]
Information in this document applies to any platform.

SYMPTOMS

Next ORA-942 is reported in the alert log at database startup:

Starting ORACLE instance (normal)
...
Opening with internal Resource Manager plan
where NUMA PG = 4, CPUs = 2
replication_dependency_tracking turned off (no async multimaster replication found)
Error 942 occured during Initialization of Bufq KUPC$S_2_20081126123353
Starting background process QMNC
QMNC started with pid=19, OS id=1567
Fri Nov 25 07:33:56 2011
Completed: ALTER DATABASE OPEN

...



Trying to do an export, it fails with:

oracle:~ > expdp system/xxx STATUS=60 PARALLEL=4 DIRECTORY=data_pump_dir LOGFILE=expdp.log DUMPFILE=expdp_%u.dmp TABLES=user.table_name TRACE=480300

Export: Release 10.2.0.4.0 - 64bit Production on Monday, 28 November, 2011 13:06:37

Copyright (c) 2003, 2007, Oracle. All rights reserved.

Connected to: Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64bit Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options

UDE-00008: operation generated ORACLE error 31623
ORA-31623: a job is not attached to this session via the specified handle
ORA-06512: at "SYS.DBMS_DATAPUMP", line 2772
ORA-06512: at "SYS.DBMS_DATAPUMP", line 3886
ORA-06512: at line 1



At the same time an ORA-600 error is reported an the alert log:

Mon Nov 28 13:06:39 2011
Errors in file /production/ora1/DUPDWH/var/DUPDWH/admin/udump/dupdwh_ora_16238.trc:
ORA-00600: internal error code, arguments: [kwqbgqc: bad state], [1], [1], [], [], [], [], []

 

CAUSE

A datapump queue is invalid or it doesn't exist.?

The problem occurs during the buffered queue initialization.

SOLUTION

To recreate the failing queue, follow the steps from?
Note 754401.1 - ORA-31623 and ORA-600 [kwqbgqc: bad state] During an Export or Import with DataPump

REFERENCES

NOTE:403036.1 - ORA-00600: [Kwqbgqc: Bad State], [1], [1] reported on Enqueue of BUFFERED message to a single or multiple consumer queue
NOTE:754401.1 - ORA-31623 and ORA-600 [kwqbgqc: bad state] During an Export or Import with DataPump

 

 

 

"Errors ORA-31623 And ORA-600 [kwqbgqc: bad state] During DataPump Export Or Import (文檔 ID 754401.1)"原文如下所示:

 

APPLIES TO:

Oracle Database Cloud Schema Service - Version N/A and later
Oracle Database Exadata Express Cloud Service - Version N/A and later
Oracle Database Exadata Cloud Machine - Version N/A and later
Oracle Cloud Infrastructure - Database Service - Version N/A and later
Oracle Database Backup Service - Version N/A and later
Information in this document applies to any platform.


SYMPTOMS

An export or import operation using DataPump fails with the following errors:

UDI-00008: operation generated ORACLE error 31623
ORA-31623: a job is not attached to this session via the specified handle
ORA-06512: at "SYS.DBMS_DATAPUMP", line 2772
ORA-06512: at "SYS.DBMS_DATAPUMP", line 3886
ORA-06512: at line 1

and the alert log file of the database shows the error:

ORA-00600: internal error code, arguments: [kwqbgqc: bad state], [1], [1], [], [], [], [], []

CHANGES

 

CAUSE

A DataPump queue is invalid in data dictionary. This can happen after reruning the catpatch.sql or utlrp.sql scripts.

SOLUTION

1. Shutdown the database cleanly:

SQL> connect / as sysdba
SQL> shutdown immediate
SQL> startup restrict

2. Drop the queue table.

SQL> exec dbms_aqadm.drop_queue_table (queue_table => 'SYS.KUPC$DATAPUMP_QUETAB', force => TRUE);

NOTE:

- If the ORA-4020 error is reported, then wait some minutes and try again
- If an ORA-24* error is reported, then it could be necessary to perform a manual cleanup. To perform this, contact with a Support Engineer.

3. Recreate the queue

The SQL is in the?
Note.361025.1 or you can pull it from the catdpb.sql script in $ORACLE_HOME/rdbms/admin directory.

-- Create our queue table.
BEGIN
  dbms_aqadm.create_queue_table (queue_table => 'SYS.KUPC$DATAPUMP_QUETAB',
         multiple_consumers => TRUE,
         queue_payload_type => 'SYS.KUPC$_MESSAGE',
         comment => 'DataPump Queue Table',
         compatible => '8.1.3');

EXCEPTION
  WHEN OTHERS THEN
    IF SQLCODE = -24001 THEN NULL;
  ELSE RAISE;
  END IF;
END;
/

4. Run utlrp.sql to recompile all the database objects.

5. Retry the DataPump operation

 

 

測試驗證,使用expdp導出時,確實會遇到ORA-06512錯誤,具體如下所示:

 

 

$ expdp system/xxx DIRECTORY=DUMP_DIR LOGFILE=expdp.log DUMPFILE=test.dmp TABLES=xxxx.xxxx 
 
Export: Release 10.2.0.5.0 - 64bit Production on Friday, 09 August, 2019 17:08:13
 
Copyright (c) 2003, 2007, Oracle.  All rights reserved.
 
Connected to: Oracle Database 10g Release 10.2.0.5.0 - 64bit Production
 
UDE-00008: operation generated ORACLE error 31623
ORA-31623: a job is not attached to this session via the specified handle
ORA-06512: at "SYS.DBMS_DATAPUMP", line 2772
ORA-06512: at "SYS.DBMS_DATAPUMP", line 3886
ORA-06512: at line 1

 

如果加上參數TRACE=480300, expdp會一直卡死,不出結果。告警日誌也沒有ORA-600錯誤,跟官方文檔Errors ORA-31623 And ORA-600 [kwqbgqc: bad state] During DataPump Export Or Import (文檔 ID 754401.1)描述的略有出入。

 

$ expdp system/xxx DIRECTORY=DUMP_DIR LOGFILE=expdp.log DUMPFILE=test.dmp TABLES=xxxx.xxxx TRACE=480300

 

解決方法:

您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 運維網路基礎 1. 什麼是網路? 兩台主機怎麼進行互相通信 如何實現多台主機進行通信 如何讓多個區域網進行通信 網路拓撲 網路類型 OSI模型 DOD模型TCP 數據的封裝和解封裝 封裝 解封 應用層協議介紹 DHCP原理 DNS解析過程 主機到主機層 控制欄位 TCP三次握手 TCP四次揮手 ...
  • 1. MIPI CSI2簡介 MIPI聯盟是一個開放的會員制組織。2003年7月,由美國德州儀器(TI)、意法半導體(ST)、英國ARM和芬蘭諾基亞(Nokia)4家公司共同成立。MIPI聯盟旨在推進移動應用處理器介面的標準化 。MIPI聯盟下麵有不同的WorkGroup,分別定義了一系列的手機內部 ...
  • 本文主要講解通過curl 實現表單提交登錄。單獨的表單提交與表單登錄都差不多,因此就不單獨說了。 說明:針對curl表單提交實現登錄,不是所有網站都適用,原因是有些網站後臺做了限制或有其他校驗。我們不知道這些網站後臺的限制或校驗機制具體是什麼,因此直接curl表單登錄可能是不行的。 當然,如下案例是 ...
  • hadoop(二MapReduce) 介紹 MapReduce:其實就是把數據分開處理後再將數據合在一起. Map負責“分”,即把複雜的任務分解為若幹個“簡單的任務”來並行處理。可以進行拆分的前提是這些小任務可以並行計算,彼此間幾乎沒有依賴關係。Reduce負責“合”,即對map階段的結果進行全局匯 ...
  • 在上一篇中,我們談到過 要提升電腦的性能,可以從上面這三方面著手。 通過指令數/CPI,好像都太難了。 因此工程師們,就在CPU上多放晶體管,不斷提升CPU的時鐘頻率,讓CPU更快,程式的執行時間就會縮短。 從1978年Intel發佈的8086 CPU開始,電腦的主頻從5MHz開始,不斷攀升 1 ...
  • UNPIVOT特點 UNPIVOT運算符通過將列旋轉到行來執行PIVOT的反向操作,UNPIVOT 並不完全是 PIVOT 的逆操作。 PIVOT 執行聚合,並將多個可能的行合併為輸出中的一行。UNPIVOT 不重現原始表值表達式的結果,因為行已被合併。 另外,UNPIVOT 輸入中的 NULL 值 ...
  • 學過大數據的人都應該知道kafka、RabbitMQ這些分散式消息訂閱系統,本文今天著重講解下kakfa。kafka有非常好的橫向擴展性,可實時存儲海量數據,是流數據處理中間件的事實標準。本文將介紹Kafka是如何保證數據可靠性和一致性的。 數據可靠性 kafka作為一個商業級消息中間件,消息的可靠 ...
  • MySQL是現在普遍使用的資料庫,但是如果宕機了必然會造成數據丟失。為了保證MySQL資料庫的可靠性,就要會一些提高可靠性的技術。MySQL主從複製可以做到實時熱備數據。本文介紹MySQL主從複製原理及其配置過程。 術語:主從複製——master slave replication(M-S模式)。 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...