2024年4月28日发(作者:)
oracle 1455 错误解决办法
ORA-01455: 转换列溢出整数数据类型
在用 expuser/pwd@oraclesidfile=e: 导出oracleDmp时报错了,错误如下
EXP-00056: ORACLE error 1455 encountered
ORA-01455: converting column overflows integer datatype
EXP-00000: Export terminated unsuccessfully
在网上查了查都是:
ORA-01455: 转换列溢出整数数据类型 ,Export 命令会将表的statistics 值转成成整形。 当这个statistics值超过2^31-1时,就会
报这个错误。
最后在exp命令后加 “INDEXES=n STATISTICS=none”这两个参数,
exp user/pwd@oraclesid file=e: INDEXES=n STATISTICS=none
就可以成功导出了。
/tianlesoftware/article/details/6251652
Oracle exp EXP-00008
和
ORA-01455: converting column overflows integer datatype
的解
决方法
分类: Oracle 故障解决案例 2011-03-15 19:15 914人阅读 评论(1) 收藏 举报
Oracle 用exp 导出数据库的时候,可能会遇到这个错误:
Encountering errors in Export logfile
EXP-00008: Oracle error # encountered
ORA-01455: converting column overflows integer datatype
当我们在exp命令加上参数:INDEXES=n STATISTICS=none 后就不会报这个错误。
导致这个错误原因:
Export 命令会将表的statistics 值转成成整形。 当这个statistics值超过2^31-1时,就
会报这个错误。
解决方法:
1. 通过dba_tables 和 dba_indexes 来查看对应表的值。 即num_rows值,看是否超过了
2^31-1。
如果表的numrows超过了,可以手工的修改表的这个值,如:
SQL> execute __table_stats( 'SCOTT', 'EMP', numrows => 1);
该命令格式:
DBMS__TABLE_STATS( value>) 2. 删除对应的统计信息 表: SQL>ANALYZE TABLE 索引: SQL>ANALYZE INDEX 或者使用: execute __index_stats(ownname => 'scott', indname => 'my_indx_1'); execute dbms__table_stats(ownname => 'scott', tabname=>'table_name') 修改完之后,在导,就没有问题了。 --------------------------------------------------------------------------------------------------- Blog: /tianlesoftware 网上资源: 相关视频:/tianlesoftware/archive/2009/11/27/ DBA1 群:62697716(满); DBA2 群:62697977(满) DBA3 群:62697850(满) DBA 超级群:63306533(满); DBA4 群: 83829929 DBA5群: 142216823 聊天 群:40132017 --加群需要在备注说明Oracle表空间和数据文件的关系,否则拒绝申请 How do I fix ORA-01455 error on 11g Release 2 oracle database ? INTRODUCTION Today, using my test Oracle 11g Release 2 on one virtual machine, to test the export of one schema. I was exporting schema n 11.2 database With 10g Client. The export Gave an Ora-01455. The export failed with the following detailed error : . exporting referential integrity constraints . exporting triggers EXP-00056: ORACLE error 1455 encountered ORA-01455: converting column overflows integer datatype EXP-00000: Export terminated unsuccessfully ….. I remember I have solved this issue one month ago when one Oracle user posted the issue on the OTN forum. I help him to fix the issue. After fixing the problem, I thought it would be a good idea to post the solution here so everyone can solve it in the future; THE ERROR
发布者:admin,转转请注明出处:http://www.yc00.com/web/1714239073a2408224.html
评论列表(0条)