oracle 11g exp 挂起

标签 oracle export schema

尝试使用以下命令从 Oracle 11g 数据库导出架构时

exp userid=EA/@ASID file=c:\m\ea.dmp

它在永远卡住之前开始导出相当多的表:

...
EXP-00091: Fragliche Statistiken werden exportiert.
. . Export der Tabelle                T_SCENARIOTYPES          3 Zeilen exportiert
EXP-00091: Fragliche Statistiken werden exportiert.
. . Export der Tabelle                 T_SECUSERGROUP          6 Zeilen exportiert
. . Export der Tabelle            T_SECUSERPERMISSION          2 Zeilen exportiert
. . Export der Tabelle    

             T_SNAPSHOT

架构可用,表 T_SNAPSHOT 可访问,并在 SQL Developer 中显示(乍一看)合理的内容

有什么想法吗?提前谢谢!

最佳答案

The EXP-00091 Exporting questionable statistics error happens when you export table data with its related optimizer statistics, and Oracle cannot verify the currency of these statistics. When CBO statistics are created/updated with dbms_stats, the time is noted, but it's always a good idea not to export statistics since they should be recalculated after import.

You can remove the EXP-00091 error by exporting with statistics="none" or by setting the client character set (e.g. export NLS_LANG=AMERICAN_AMERICA.WE8ISO8859P1).

source

关于oracle 11g exp 挂起,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25238299/

相关文章:

sql - 日期和季度 SQL ORACLE

android - 我要买一台新电脑,如何导出我的 Eclipse keystore ?请帮忙?

schema - openam federation 的问题(使用 apaches 作为数据存储)

tomcat - 如何调试不返回记录的solr查询

java - Spring 和 JPA : Create database schema and tables on demand

sql - 如何用emacs连接oracle服务器?

oracle - 如何传递包含@的用户名作为参数

java - java中OraclePreparedStatement方法setStringForClob

c# - 将 Crystal Report 导出为图像

csv - 在 DB2 中将 select 语句的结果导出为 CSV 格式