unix/linux上备份Oracle时EXP-00091的错误解决方法

unix/linux上备份数据时的错误解决方法

EXP-00091: Exporting questionable statistics.解决方法

今日EXP数据发现如下错误:

EXP-00091: Exporting questionable statistics.

. . exporting table                     TAXVOU3129    2904185 rows exported

EXP-00091: Exporting questionable statistics.

EXP-00091: Exporting questionable statistics.

EXP-00091: Exporting questionable statistics.

EXP-00091: Exporting questionable statistics.

EXP-00091: Exporting questionable statistics.

EXP-00091: Exporting questionable statistics.

EXP-00091: Exporting questionable statistics.

EXP-00091: Exporting questionable statistics.

EXP-00091: Exporting questionable statistics.

. . exporting table     TIPS_BUDGET_SUBJECT_INCOME       2297 rows exported

EXP-00091: Exporting questionable statistics.

. . exporting table               TRBUDGETBILL3128          0 rows exported

EXP-00091: Exporting questionable statistics.

EXP-00091: Exporting questionable statistics.

EXP-00091: Exporting questionable statistics.

EXP-00091: Exporting questionable statistics.

. . exporting table             TRDRAWBACKBILL3128          0 rows exported

EXP-00091: Exporting questionable statistics.

EXP-00091: Exporting questionable statistics.

EXP-00091: Exporting questionable statistics.

EXP-00091: Exporting questionable statistics.

. . exporting table                 TRECODEINFO104        849 rows exported

EXP-00091: Exporting questionable statistics.

. . exporting table                TRECODEINFO9100          1 rows exported

EXP-00091: Exporting questionable statistics.

. . exporting table               TRREMOVEBILL3128          0 rows exported

EXP-00091: Exporting questionable statistics.

EXP-00091: Exporting questionable statistics.

EXP-00091: Exporting questionable statistics.

EXP-00091: Exporting questionable statistics.

. . exporting table                TRSHAREBILL3128          0 rows exported

EXP-00091: Exporting questionable statistics.

EXP-00091: Exporting questionable statistics.

EXP-00091: Exporting questionable statistics.

EXP-00091: Exporting questionable statistics.

. . exporting table            TYPE_TABLE_RELATION         12 rows exported

EXP-00091: Exporting questionable statistics.

EXP-00091: Exporting questionable statistics.

. . exporting table                UNTAX_BILLPRICE          0 rows exported

EXP-00091: Exporting questionable statistics.

EXP-00091: Exporting questionable statistics.

. . exporting table             UNTAX_BILLPRINTERY          0 rows exported

EXP-00091: Exporting questionable statistics.

EXP-00091: Exporting questionable statistics.

. . exporting table               UNTAX_CHARGEKIND          0 rows exported

EXP-00091: Exporting questionable statistics.

EXP-00091: Exporting questionable statistics.

. . exporting table                 UNTAX_ITEMSORT          0 rows exported

EXP-00091: Exporting questionable statistics.

EXP-00091: Exporting questionable statistics.

. . exporting table                          USERS          1 rows exported

EXP-00091: Exporting questionable statistics.

EXP-00091: Exporting questionable statistics.

. . exporting table                      USER_ROLE         28 rows exported

EXP-00091: Exporting questionable statistics.

EXP-00091: Exporting questionable statistics.

. . exporting table                      VIEW_LIST          0 rows exported

EXP-00091: Exporting questionable statistics.

EXP-00091: Exporting questionable statistics.

. . exporting table                   VIEW_MANAGER          0 rows exported

EXP-00091: Exporting questionable statistics.

EXP-00091: Exporting questionable statistics.

. exporting synonyms

. exporting views

. exporting stored procedures

. exporting operators

. exporting referential integrity constraints

. exporting triggers

. exporting indextypes

. exporting bitmap, functional and extensible indexes

EXP-00091: Exporting questionable statistics.

EXP-00091: Exporting questionable statistics.

EXP-00091: Exporting questionable statistics.

EXP-00091: Exporting questionable statistics.

. exporting posttables actions

. exporting materialized views

. exporting snapshot logs

. exporting job queues

. exporting refresh groups and children

. exporting dimensions

. exporting post-schema procedural objects and actions

. exporting statistics

Export terminated successfully with warnings.

解决方法:

select * from nls_database_parameters t where t.parameter=’NLS_CHARACTERSET’

or
select
* from v$nls_parameters  where
parameter=’NLS_CHARACTERSET’;
查询值为:ZHS16GBK

然后vi
/home/oracle/.bash_profile

export
NLS_LANG=american_america.ZHS16GBK

source
/home/oracle/.bash_profile

windows下:

set
NLS_LANG=AMERICAN_AMERICA.ZHS16GBK

(定义系统环境变量可永久生效)

或注册表中设置环境变量

HKEY_LOCAL_MACHINE\SOFTWARE\ORACLE\KEY_OraDb10g_home1\NLS_LANG

修改NLS_LANG将其改为AMERICAN_AMERICA.ZHS16GBK

然后再进行EXP

.
. exporting table                  
  TAXVOU3129    2913768 rows exported

.
. exporting table     TIPS_BUDGET_SUBJECT_INCOME      
2297 rows exported

.
. exporting table              
TRBUDGETBILL3128          0 rows exported

.
. exporting table             TRDRAWBACKBILL3128
         0 rows exported

.
. exporting table                
TRECODEINFO104        849 rows exported

.
. exporting table              
 TRECODEINFO9100          1 rows exported

.
. exporting table              
TRREMOVEBILL3128          0 rows exported

.
. exporting table              
 TRSHAREBILL3128          0 rows exported

.
. exporting table            TYPE_TABLE_RELATION
        12 rows exported

.
. exporting table              
 UNTAX_BILLPRICE          0 rows exported

.
. exporting table             UNTAX_BILLPRINTERY
         0 rows exported

.
. exporting table              
UNTAX_CHARGEKIND          0 rows exported

.
. exporting table                
UNTAX_ITEMSORT          0 rows exported

.
. exporting table                  
       USERS          1 rows
exported

.
. exporting table                  
   USER_ROLE         28 rows exported

.
. exporting table                  
   VIEW_LIST          0 rows exported

.
. exporting table                  
VIEW_MANAGER          0 rows exported

.
exporting synonyms

.
exporting views

.
exporting stored procedures

.
exporting operators

.
exporting referential integrity constraints

.
exporting triggers

.
exporting indextypes

.
exporting bitmap, functional and extensible indexes

.
exporting posttables actions

.
exporting materialized views

.
exporting snapshot logs

.
exporting job queues

.
exporting refresh groups and children

.
exporting dimensions

.
exporting post-schema procedural objects and actions

.
exporting statistics

Export
terminated successfully without warnings.

linux上备份Oracle时EXP-00091的错误解决方法的更多相关文章

  1. linux下安装Oracle时交换空间不足的解决方法

    摘:linux下安装Oracle时交换空间不足的解决方法 linux上安装Oracle时交换空间不足的解决办法 增加交换空间有两种方法: 严格的说,在系统安装完后只有一种方法可以增加swap,那就是本 ...

  2. 上传文件时$_FILES为空的解决方法

    上传视频的时候打印$_FILES为空,小的文件就没问题,后来发现是因为传的文件太大, 出现这个问题的原因主要有两个:表单原因或者php设置原因: 1,表单类型: 上传文件的表单编码类型必须设置成 en ...

  3. php读取csv文件,在linux上出现中文读取不到的情况 解决方法

    今,php读取csv文件,在linux上出现中文读取不到的情况,google,后找到解决办法<?phpsetlocale(LC_ALL, 'zh_CN');$row = 1;$handle = ...

  4. ASP.NET页面上传文件时提示文件大小超过请求解决方法

    在webconfig中节点 <system.web> </system.web> 下加入以下代码:maxRequestLength为限制上传文件大小,executionTime ...

  5. Git拉取Gitlab上的代码时,报128的解决方法

    今天拉取gitlab上的代码时出现错误,一直返回128 首先我们确定我们在存储库上有没有权限,然后我就去项目中的 Members上看是否有权限,然后发现也是有的. 然后克隆的时候发现输入一万遍密码都还 ...

  6. Linux上的Tomcat地址映射,且404错误解决

    问题:现在想要加一个下载文件功能,但是文件地址不在tomcat的webapps下,需要通过地址映射到tomcat下面再通过链接执行下载文件功能. 解决方法有两种: 方法一: 用方法一的前提是不用启动服 ...

  7. oracle归档日志写满错误解决方法

    最近一年,手头上负责的项目要部署到很多个地方,由于项目组里没有人对oracle比较熟悉,只能给自己增加一个DBA的角色了.由于短时间内要部署很多单位,备份策略没有设置好,结果过了一个月,用户报告程序开 ...

  8. 【CentOS 6.5】QtCreator启动时关于dbus-1的错误解决方法

    关于上篇文章留下的启动QtCreator提示:dbus_connection_can_send_type的错误,解决办法: 更新dbus版本来解决.. 首先去 http://dbus.freedesk ...

  9. 在android移动设备上登录gmail的时候报password错误解决方法!!!!

    今天刚发现的解决的方法:就是登录web端的gmail,查看收件箱应该有no-reply这一帐户给你发过邮件(假设没有,你在移动设备上登录一下gmail).照着邮件里的说明去做,就是生成一个专门应用的p ...

随机推荐

  1. 华为 oj 水题 数字颠倒

    练手,献给初学者 #include <stdio.h> #include <string.h> int main(void) { char string[200]={'\0'} ...

  2. volatile举列说明const

    1.即使本程序中虽然不改变这种类型的值,但别的比如中断程序可能会改变这个值,加上volatile,编译器不优化,每次都重新访问这个值做判断 2.如 unsigned char flag = 1; in ...

  3. winPcap_1_开篇

    什么是WinPcap WinPcap是一个基于Win32平台的,用于捕获网络数据包并进行分析的开源库. 因为有些应用程序需要直接访问网络中的数据包.也就是说,那些应用程序需要访问原始数据包,即没有被操 ...

  4. 使用ToolRunner运行Hadoop程序基本原理分析

    为了简化命令行方式运行作业,Hadoop自带了一些辅助类.GenericOptionsParser是一个类,用来解释常用的Hadoop命令行选项,并根据需要,为Configuration对象设置相应的 ...

  5. JSP学习笔记 - 源码 -- JSP Custom Tags -- JSP自定义标记

    NetBeans 项目demo下载地址>>  http://files.cnblogs.com/files/AndrewXu/JSPCustomTags.zip

  6. 织梦dedecms返回上一级链接代码

    如题:织梦dede手机页面,如果我进入了下一级页面,想回上一级,<a href="xx">该用什么标签? 用JS实现,代码如下 <a href="jav ...

  7. 拼接xml时出现内存溢出解决办法

    /// designed by Alex /// 解决内存溢出问题,不可使用迭代器和foreach /// 循环遍历List, 别生成xml,一边释放 /// 反向遍历,相当于出栈,避免索引顺序乱的问 ...

  8. js 浮点数加减问题

      /**  ** 加法函数,用来得到精确的加法结果  ** 说明:javascript的加法结果会有误差,在两个浮点数相加的时候会比较明显.这个函数返回较为精确的加法结果.  ** 调用:accAd ...

  9. c#实现文件拖放

    1. 选择form窗口,在事件分别双击双击DragDrop和DragEnter private void Form1_DragDrop(object sender, DragEventArgs e) ...

  10. Android Studio 配置SVN实现代码管理

    Refference From:http://iaiai.iteye.com/blog/2267346 一.Android Studio配置SVN Android Studio关联配置SVN很简单,在 ...