zoukankan      html  css  js  c++  java
  • EXP00091: Exporting questionable statistics.解决方法

    今日EXP数据发现:

    EXP-00091: Exporting questionable statistics.
    . . exporting table                     MV_SERVICE       1022 rows exported
    EXP-00091: Exporting questionable statistics.
    EXP-00091: Exporting questionable statistics.
    . . exporting table                  MV_SERVICEFEE        691 rows exported
    EXP-00091: Exporting questionable statistics.
    . . exporting table                     PLAN_TABLE          0 rows exported
    . . exporting table             TAB_BROWSERCATALOG    1407427 rows exported
    EXP-00091: Exporting questionable statistics.
    . . exporting table                 TAB_BROWSERFEE      59233 rows exported……………………………

    解决方法:

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

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

    然后vi /home/oracle/.bash_profile

    export NLS_LANG=american_america.ZHS16CGB231280

    source /home/oracle/.bash_profile

    ================以上引用其他人网站内容====================
    我懒的写了,看了一眼解决办法挺好!我自己写了一备份脚本在cron Job 中执行附上脚本!

    #!/bin/bash

    ORACLE_SID=test
    ORACLE_BASE=/opt/oracle
    ORACLE_TERM=xterm
    ORACLE_HOME=/opt/oracle/product/10.2.0/db_1
    PATH=$ORACLE_HOME/bin/:$PATH
    NLS_LANG=american_america.ZHS16GBK

    export ORACLE_SID ORACLE_BASE ORACLE_TERM ORACLE_HOME PATH NLS_LANG

    cd /opt/database_back
    exp test/test1 file=test20090605.dmp log=exp20090605.log

  • 相关阅读:
    vim encoding
    window线程间通信常用的三种方法
    Python与C之间的相互调用(Python C API及Python ctypes库)
    vim中去掉每一行的^M
    现实点,不要急! [ 公司软件过程改进案例]
    理解TCP/IP协议
    Linux下C/C++帮助手册安装方法 及使用方法
    MySQL主主高可用(keepalive)
    React获取DOM元素ref属性
    一些vue组件库
  • 原文地址:https://www.cnblogs.com/storymedia/p/4436213.html
Copyright © 2011-2022 走看看