对一个DBA或需使用exp,imp的普通用户来说,在我们做exp的过程中可能经常会遇到EXP-00091 Exporting questionable statistics.这样的EXP信息,其实它就是exp的error message,它产生的原因是因为我们exp工具所在的环境变量中的NLS_LANG与DB中的NLS_CHARACTERSET不一致。
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
附上exp-91的oracle error message 解决方案说明:
oerr exp 91
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-00091: Exporting questionable statistics. EXP-00091: Exporting questionable statistics. . . exporting table DEPT 4 rows exported . . exporting table EMP 17 rows exported . . exporting table GOODS ...
在Linux系统下,导出Oracle数据库的过程中遇到"Exporting questionable statistics."错误,这通常是由于字符集不兼容或者配置不正确导致的问题。Oracle数据库系统在处理数据时,会根据设定的字符集来编码和解码字符...
从给定文件内容中提取的知识点涵盖了如何使用Storyboard Designer将Storyboard项目导出为Android应用程序的过程,以及如何安装Subclipse客户端以连接到Crank软件的公共代码仓库。以下是详细的知识点: ...
- Fixed exporting of Unicode characters to ODF for non-Unicode IDE - Fixed exporting of text with empty lines at the end to XLSX + Added TfrxPrintMode support in the frxClassRTTI - Fixed access to...
python-django-exporting-files 这是一个Python / Django应用程序,它显示了导出Excel和PDF文件的简单程度。 为了创建Excel文件,我们使用模块。 该代码包含有关如何将数据添加到Excel文件,如何调整列和行的大小...
这里我们关注的三个JavaScript文件——`highcharts.js`、`draggable-legend.js`和`exporting.js`,都是Highcharts库的重要组成部分,提供了不同的功能和扩展。 1. **highcharts.js**: `highcharts.js`是...
- Fixed exporting of fsAltDot frame line style in the PDF export - Fixed C++ Builder compatibility [6.4.7 - 6.4.9] - Fixed division by zero in the PDF export [6.4.4 - 6.4.6] - Fixed wrong behaviour of...
- Fixed exporting of fsAltDot frame line style in the PDF export - Fixed C++ Builder compatibility [6.4.7 - 6.4.9] - Fixed division by zero in the PDF export [6.4.4 - 6.4.6] - Fixed wrong behaviour of...
- Fixed exporting of fsAltDot frame line style in the PDF export - Fixed C++ Builder compatibility [6.4.7 - 6.4.9] - Fixed division by zero in the PDF export [6.4.4 - 6.4.6] - Fixed wrong behaviour of...
Exporting the operator repeat_interleave to ONNX opset version 11 is not supported TypeError: 'torch._C.Value' object is not iterable (Occurred when translating repeat_interleave). 问题解决: 1....
- Fixed exporting of fsAltDot frame line style in the PDF export - Fixed C++ Builder compatibility [6.4.7 - 6.4.9] - Fixed division by zero in the PDF export [6.4.4 - 6.4.6] - Fixed wrong behaviour of...
highchars图表用到的基础js,还有其他js需要用到的会一同上传
..exporting table T 1 rows exported Export terminated successfully without warnings. ``` 从输出结果可以看出,这次导出操作没有出现任何警告或错误信息,表明导出成功完成。 #### 五、EXP命令参数解析 在这...
参数 参数解释 svg SVG 字符串,当指定了 options 参数是该参数将会被忽略 options 图表配置 type 导出文件的类型,可以是 'image/png'、'image/jpeg'、'application/pdf' 或 'image/svg+xml' 中的一个 ...
DW2XLS 4.0 release notes. New features in 4.0 - Added support for the new Excel file format, OOXML (XML based Excel 2007 ...- When exporting to OOXML format, inserting pictures is not yet supported.
EFS-PV-PORTING脚本 efs-pv-porting可以导出当前群集PV(持久卷)并导入新群集。... -e / --export Exporting PV in old cluster ex) ./run.py -e export_file // ./run.py --export export_file -i / --import Impo
Excel Importing & Exporting Text Data ---Quickly Turn Raw Data Into Excel Tables, By Scott Hartshorn, epub格式版。
这个"Highcharts生成图表所需源码包"包含了两个核心文件:highcharts.js和exporting.js。 highcharts.js是Highcharts的核心库,提供了基础的图表绘制功能。它包含了一系列用于构建图表的函数和对象,例如`...