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. Reverse digits of an integer.

    class Solution { public: int reverse(int x) { ;//long 是怕中间过程溢出 <<,max=-min-){ ans=ans*+x%; x=x ...

  2. Keil C减小代码编译量大小的方法(gai)

    keil-C减小代码编译大小的方法整理 方法一:(通过优化代码减小) 1.1少做乘除运算,使用左/右移位来实现乘除 Eg ,普通:a = 0x80*4: 优化:a = 0x80<<2: 1 ...

  3. java基础知识再学习--HashMap与ConcurrentHashMap的区别

    引用:http://blog.csdn.net/xuefeng0707/article/details/40834595 从JDK1.2起,就有了HashMap,正如前一篇文章所说,HashMap不是 ...

  4. eclipse 添加jar包的方式

    参考资料地址:http://blog.csdn.net/mazhaojuan/article/details/21403717

  5. 【JAVA编码专题】总结

    第一部分:编码基础 为什么需要编码:用计算机看得懂的语言(二进制数)表示各种各样的字符. 一.基本概念 ASCII.Unicode.big5.GBK等为字符集,它们只定义了这个字符集内有哪些字符,以及 ...

  6. Gora快速入门

    概述 Gora是apache的一个开源项目. The Apache Gora open source framework provides an in-memory data model and pe ...

  7. nodejs应用mysql(纯属翻译)

    原文点击这里 目录 Install Introduction Contributors Sponsors Community Establishing connections Connection o ...

  8. Oracle 10g RAC启动与关闭命令

    一. 检查共享设备 一般情况下, 存放OCR 和 Voting Disk 的OCFS2 或者raw 都是自动启动的. 如果他们没有启动,RAC 肯定是启动不了的. 1.1 如果使用ocfs2的,检查o ...

  9. [jumping to the gate] 娱乐向setjmp

    转载:http://tieba.baidu.com/p/1393753521 灌水的时候从goto一路拐到了setjmp, 顺便也试了试貌似这东西确实是没有析构效果的.之前并没有看过setjmp的实现 ...

  10. Android开源中国客户端学习 (自定义View)左右滑动控件ScrollLayout

    左右滑动的控件我们使用的也是非常多了,但是基本上都是使用的viewpager 等 android基础的控件,那么我们有么有考虑过查看他的源码进行定制呢?当然,如果你自我感觉非常好的话可以自己定制一个, ...