EXP-00091 Exporting questionable statistics
對一個DBA或需使用exp,imp的普通使用者來說,在我們做exp的過程中可能經常會遇到EXP-00091 Exporting questionable statistics.這樣的EXP資訊,其實它就是exp的error message,它產生的原因是因為我們exp工具所在的環境變數中的NLS_LANG與DB中的NLS_CHARACTERSET不一致。但需說明的是,exp-91這個error message對所生成的dump檔沒有影響,生成的dump檔還可以正常的imp(個人體會,不知道有沒有錯),雖然它對我們的dump檔沒有影響,我個人還是不想它出現,大家也有同感吧, 。。下面我們就讓它消失吧。。我們一起來
step 01 檢視DB中的NLS_CHARACTERSET的值(提供兩種方法):
select * from nls_database_parameters t where t.parameter='NLS_CHARACTERSET'
or
select * from v$nls_parameters where parameter='NLS_CHARACTERSET';
SQL> select * from v$nls_parameters where parameter='NLS_CHARACTERSET';
PARAMETER VALUE
----------------------- ----------------------------------------------
NLS_CHARACTERSET ZHT16BIG5
step 02 根據step 01查出的NLS_CHARACTERSET(ZHT16BIG5)來設定exp的環境變數:
WINNT> set NLS_LANG=AMERICAN_AMERICA.ZHT16BIG5
LINUX> export NLS_LANG=AMERICAN_AMERICA.ZHT16BIG5
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/27038344/viewspace-750402/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- EXP-00091: Exporting questionable statisticsExport
- EXP-00091: Exporting questionable statistics.Export
- EXP-00091 Exporting questionable statistics錯誤Export
- EXP-00091: Exporting questionable statistics 處理辦法Export
- EXP-00091: Exporting questionable statistics 問題處理方法Export
- 轉帖:EXP-00091: Exporting questionable statistics.解決方法Export
- EXP-00091: Exporting questionable statistics.錯誤解決方案Export
- 【故障處理】EXP-00091: Exporting questionable statistics 問題處理方法Export
- Exporting the Server Parameter FileExportServer
- oracle之EXP-00091Oracle
- Database StatisticsDatabase
- DELETE STATISTICSdelete
- Statistics related viewView
- Time Model Statistics
- oracle之StatisticsOracle
- Import parameter: STATISTICSImport
- EXP-00091解決辦法
- EXP-00091錯誤解決
- EXP-00091解決方法(轉)
- 解決EXP-00091的方法
- Saving Original Statistics and Gathering New Statistics
- SciTech-Mathematics-Probability+Statistics-7 Key Statistics Concepts
- Exporting on Unix Systems [ID 1018477.6]Export
- SciTech-Mathmatics-Probability+Statistics-VI-Statistics:Quantifing Uncertainty + Regression Analysis)AI
- EXP-00091問題的解決
- How restore CBO statisticsREST
- Oracle Column Group StatisticsOracle
- Explain for the Statistics of Execution PlanAI
- [PT]Column Histogram StatisticsHistogram
- Statistics and Data Analysis for BioinformaticsORM
- SciTech-Statistics-英語授課:Business Statistics商務統計
- EXP--解決EXP-00091的方法
- MySQL中的Statistics等待MySql
- AWR中的SQL StatisticsSQL
- statistics的export與import!ExportImport
- How to gather statistics on Oracle eBS.Oracle
- [筆記]statistics資訊的收集筆記
- Exp匯出報錯EXP-00091分析解決