EXP-00091解決方法(轉)
在EXP匯出時,出現EXP-00091報錯:
. . exporting table FRIEND
..............
142480 rows exported
EXP-00091: Exporting questionable statistics.
檢視EXP-00091的oracle error message 解決方案說明:
[oracle@MWSG1: ~]$oerr exp 00091
00091, 00000, "Exporting questionable statistics."
// *Cause: Export was able export statistics, but the statistics may not be
// usuable. The statistics are questionable because one or more of
// the following happened during export: a row error occurred, client
// character set or NCHARSET does not match with the server, a query
// clause was specified on export, only certain partitions or
// subpartitions were exported, or a fatal error occurred while
// processing a table.
// *Action: To export non-questionable statistics, change the client character
// set or NCHARSET to match the server, export with no query clause,
// export complete tables. If desired, import parameters can be
// supplied so that only non-questionable statistics will be imported,
// and all questionable statistics will be recalculated.
在我們做exp的過程中可能經常會遇到EXP-00091: Exporting questionable statistics.這樣的EXP資訊,其實它就是exp的error message,它產生的原因是因為我們exp工具所在的環境變數中的NLS_LANG與DB中的NLS_CHARACTERSET不一致。
⑴ 我們來檢視DB中的NLS_CHARACTERSET的值(提供兩種方法):
- sys@CCDB> select * from nls_database_parameters t where t.parameter='NLS_CHARACTERSET';
- PARAMETER VALUE
- ------------------------- ---------------
- NLS_CHARACTERSET AL32UTF8
- 或者
- sys@CCDB> select * from v$nls_parameters where parameter='NLS_CHARACTERSET';
- PARAMETER VALUE
- ------------------------- ---------------
- NLS_CHARACTERSET AL32UTF8
⑵ 檢視環境變數中的NLS_LANG:
[oracle@MWSG1: ~]$echo $NLS_LANG
AMERICAN_AMERICA.ZHS16CGB231280 --果然與DB中NLS_CHARACTERSET=AL32UTF8不同。
⑶ 根據⑴查出的NLS_CHARACTERSET(AL32UTF8)來設定exp的環境變數:
WINNT> set NLS_LANG=AMERICAN_AMERICA.AL32UTF8
[oracle@MWSG1: ~]$export NLS_LANG=AMERICAN_AMERICA.AL32UTF8
[oracle@MWSG1: ~]$echo $NLS_LANG
AMERICAN_AMERICA.AL32UTF8 --設定與DB中NLS_CHARACTERSET=AL32UTF8相同。
⑷ 再來EXP匯出資料 檢視log中是否還有EXP-00091報錯?
. . exporting table FRIEND
...........................................................................
..............................................
1216253 rows exported
. . exporting table FRIEND_GRP
128 rows exported
Export terminated successfully without warnings. --成功匯出且沒警告。
EXP-00091問題解決了!
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/14710393/viewspace-752242/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- EXP--解決EXP-00091的方法 (轉貼)
- 解決EXP-00091的方法
- 轉帖:EXP-00091: Exporting questionable statistics.解決方法Export
- EXP--解決EXP-00091的方法
- EXP-00091解決辦法
- EXP-00091錯誤解決
- EXP-00091問題的解決
- Exp匯出報錯EXP-00091分析解決
- EXP-00091: Exporting questionable statistics.錯誤解決方案Export
- Windows環境下EXP-00091錯誤的解決辦法Windows
- SVN clean失敗解決方法【轉】
- [轉]Android ANR 分析解決方法Android
- 在LINUX下用EXP匯出資料時出現EXP-00091錯誤的解決方法Linux
- 轉貼:xhost unable to open display解決方法
- MYSQL(解決方法):Client does not support authentication(轉)MySqlclient
- 解決BoundsChecker和VC打架的方法 (轉)
- 疑似slax掛載usb的解決方法(轉)
- Solaris 常見問題及解決方法(轉)
- Windows變慢原因分析及解決方法(轉)Windows
- Linux啟動問題解決方法(轉)Linux
- 解決ORA-12560的方法(轉載)
- UNIX系統感染病毒的解決方法(轉)
- EXP-00091: Exporting questionable statistics 問題處理方法Export
- CPU佔用100%原因及解決方法 轉載
- Oracle資料庫配置錯誤資訊解決方法(轉)Oracle資料庫
- XWindow顯示卡配置通用解決方法 Xconfigurator (轉)
- 用javascript連線資料庫的解決方法 (轉)JavaScript資料庫
- 常見的80004005錯誤及其解決方法 (轉)
- Linux X-Window顯示卡配置通用解決方法(轉)Linux
- BIOS被病毒破壞了的解決方法(轉)iOS
- Windows XP 禁止執行組策略的解決方法(轉)Windows
- Windows XP 不能夠正常關機的解決方法(轉)Windows
- oracle之EXP-00091Oracle
- TabError的解決方法Error
- EXE病毒解決方法
- ArtifactDescriptorException的解決方法Exception
- 【轉】RAC安裝時,報The specified nodes are not clusterable 的解決方法
- Hadoop使用常見問題以及解決方法(轉載)Hadoop