Oracle數據泵(Data Dump)使用過程當中經常會遇到一些
導讀:1建站知識從oracledatabase 10g開始引入了data pump(數據泵)工具,它提供了一種基于服務器的數據導出導入使用程序。 所有的data pump都作為網站建設公司網站建設教程。
從oracledatabase 10g開始引入了data pump(數據泵)工具,它提供了一種基于服務器的數據導出導入使用程序。 所有的data pump都作為一個服務器進程,數據不再必須由一個客戶程序處理。Data Pump工具的導出和導入實現Oracle數據庫之間數據的傳輸。
Oracle數據泵(Data Dump)使用過程當中經常會遇到一些奇奇怪怪的錯誤案例,下面總結一些自己使用數據泵(Data Dump)過程當中遇到的問題以及解決方法。都是在使用過程中遇到的問題,以后陸續遇到數據泵(Data Dump)的錯誤案例,都會補充在此篇。
錯誤案例1:
ORA-39065: DISPATCH 中出現意外的主進程異常錯誤;ORA-44002: 對象名無效
Windows 平臺錯誤提示:
Linux平臺錯誤提示
解決方法:
[oracle@DB-Server admin]$ oerr ora 39065 39065, 00000, "unexpected master process exception in %s" // *Cause: An unhandled exception was detected internally within the master // control process for the Data Pump job. This is an internal error. // messages will detail the problems. // *Action: If problem persists, contact Oracle Customer Support. [oracle@DB-Server admin]$ oerr ora 39097 39097, 00000, "Data Pump job encountered unexpected error %s" // *Cause: An unexpected, potentially non-fatal error occurred while // processing a Data Pump job. // *Action: Contact Oracle Customer Support.執行$ORACLE_HOME/rdbms/admin目錄下面的catmet2.sql,utlrp.sql 兩個SQL文件即可解決這個問題。
[oracle@DB-Server ~]$ cd $ORACLE_HOME/rdbms/admin [oracle@DB-Server admin]$ sqlplus / as sysdba SQL*Plus: Release 10.2.0.1.0 - P網站建設制作roduction on Sun Sep 7 08:24:23 2014 Copyright (c) 1982, 2005, Oracle. All rights reserved. Connected to an idle instance. SQL> @catmet2.sql SQL> @utlrp.sql錯誤案例2:
使用expdp/impdp時遭遇ORA-39006: internal error;ORA-39213: Metadata processing is notavailable錯誤
[oracle@DB-Server backup]$ impdp frnt/frnt directory=dum_dir dumpfile=20120420.FRNT_02.dmp tablespaces=TBS_TR_DATA; Import: Release 10.2.0.1.0 - 64bit Production on Wednesday, 25 April, 2012 14:41:48 Copyright (c) 2003, 2005, Oracle. All rights reserved. Connected to: Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - 64bit Production With the Partitioning, OLAP and Data Mining options ORA-39006: internal error ORA-39213: Metadata processing is not available解決方法:
錯誤原因如下所示,因為Data Pump不能使用Metadata API, 這個是因為XSL stylesheets 沒有正確設置緣故。需要以SYSDBA執行dbms_metadata_util.load_stylesheets
聲明: 本文由我的SEOUC技術文章主頁發布于:2023-05-22 ,文章Oracle數據泵(Data Dump)使用過程當中經常會遇到一些主要講述經常會,奇怪,Oracle數據泵(Data Dump)使用過網站建設源碼以及服務器配置搭建相關技術文章。轉載請保留鏈接: http://www.bifwcx.com/article/web_4556.html