EXP-00056 ORA-1455

Source: Internet
Author: User

When exporting data with exp, exp-OOO56 is reported to the end, ORA-01455: the conversion column overflows the integer data type.

The reason for searching the Internet is that the Export command converts the statistics value of the table to an integer. If the value exceeds 2 ^ 32-1, an error is returned, check whether the num_rows value of dba_tables and dba_indexes exceeds this value. If manual modification is exceeded:

Dbms_stats.set_table_stats (<owner>, <table_name>, <statistic_field >=> <new lower value>)

Delete the corresponding statistics: Analyze table <table_name> Delete statistics

Analyze index <index_name> Delete statistics

According to this view, we found that the num_rows values in dba_tables and dba_indexes are not too large, so we decided to ignore them, if you can add the parameter indexes = n statistics = none to the exp command, this error is not reported. If you try it, an error is still returned.

In this case, check whether a stored procedure is being executed. Check and kill the locked process and try again, or report an error.

Finally, we can see that it is caused by views. Check that a view is not compiled successfully. Save the view statement, delete the view, and try again. No error is returned.

EXP-00056 ORA-1455

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.