EXP-00091错误的说明和解决方法

简介: 今天我写了一个在Linux下执行定时任务备份Oracle数据库的脚本,但是在root用户下执行脚本的时候报错了,错误内容为EXP-00091,下面附上解决方案(当然,下面的内容是我转载的哦!):对于一个经常用oracle的人来讲,会经常用到EXP和imp工具,我们在做EXP的过程中可能经常会遇到EXP-00091 Exporting questionable statistics的错误。

今天我写了一个在Linux下执行定时任务备份Oracle数据库的脚本,但是在root用户下执行脚本的时候报错了,错误内容为EXP-00091,下面附上解决方案(当然,下面的内容是我转载的哦!)


对于一个经常用oracle的人来讲,会经常用到EXP和imp工具,我们在做EXP的过程中可能经常会遇到EXP-00091 Exporting questionable statistics的错误。

其实这个是EXP的error message,它产生的原因是因为我们EXP工具所在的环境变量中的NLS_LANG和Database中的NLS_CHARACTERSET不一致导致的。但需要说明的是,EXP-00091这个error message对所产生的dump没有影响,生成的dump还可以正常的imp(但是最好还是再次EXP)

在oracle的doc中这样描述这个错误信息:

EXP-00091: 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.

上面的错误描述(cause)和错误的解决方法(action)已经说的比较明确了,下面我们做一下简单的说明

出现EXP-00091之后,我们采用的解决方案如下:

1、查看database中的NLS_CHARACTERSET的值

a、select * from nls_database_parameters t where t.parameter='NLS_CHARACTERSET';

b、select * from v$nls_parameters where parameter='NLS_CHARACTERSET';

PARAMETER          VALUE 

-----------------  ----------

NLS_CHARACTERSET   ZHS16GBK 

2、根据第一步查出来的NLS_CHARACTERSET(即ZHS16GBK)来设定

windows环境:cmd > set NLS_LANG=AMERICAN_AMERICA.ZHS16GBK

linux环境:Shell > export NLS_LANG=AMERICAN_AMERICA.ZHS16GBK

链接:

exp/imp字符集问题的说明:http://blog.sina.com.cn/s/blog_67be3b4501015q7z.html


相关文章
|
Oracle 关系型数据库 Linux
解决Linux系统下exp导入EXP-00028异常
问题描述:     在Linux系统中,对某个数据库用户进行exp导出备份时,出现下述异常: Oracle Database 11g Enterprise Edition Release 11.2.0.4.0 - 64bit Production With the Partitioning, OLAP, Data Mining and Real Application Testing options EXP-00028:  /home/xxxx.dmp д : expdat.dmp > 无法成功导出 解决步骤:     起初是怀疑权限不够,所以对数据库所在目录赋权。
1784 0
|
9月前
|
数据库
学生错误‘3704‘解决方法
学生错误‘3704‘解决方法
|
9月前
错误使用xlsread(line 260),错误:服务器出现意外情况
错误使用xlsread(line 260),错误:服务器出现意外情况
88 0
|
缓存 关系型数据库 数据库
|
关系型数据库 Oracle Linux
|
Shell Windows 关系型数据库
[20160809]exp语法问题.txt
[20160809]exp语法问题.txt http://blog.itpub.net/267265/viewspace-2122890/ --一开始以为上面的语法是shell有关.
904 0