Oracle 11g R2 returns a EXP-00011 error solution with EXP Export

Source: Internet
Author: User

Oracle 11g R2 returns a EXP-00011 error solution with EXP Export

C: \> exp businessdata/businessdata file = dropcol. dmp tables = ACSTRULE, ARREARSCFG, role al_account, role al_account_his, INVOICE, INVOICE_HISTORY, role, RULCOCAP, STEVREAC

Export: Release 11.2.0.1.0-Production on Mon Dec 5 19:59:39 2011

Copyright (c) 1982,200 9, Oracle and/or its affiliates. All rights reserved.


Connected to: Oracle Database 11g Enterprise Edition Release 11.2.0.1.0-Produc
Tion
With the Partitioning, OLAP, Data Mining and Real Application Testing options
Export done in WE8MSWIN1252 character set and AL16UTF16 NCHAR character set
Server uses AL32UTF8 character set (possible charset conversion)

About to export specified tables via Conventional Path...
.. Exporting table ACSTRULE 1 rows exported
.. Exporting table ARREARSCFG 2 rows exported
EXP-00011: BUSINESSDATA. ARREARS_REPORT_ACCT does not exist
.. Exporting table CREATE_INVOICE_ACTION 2 rows exported
.. Exporting table paial_account 14639 rows exported
.. Exporting table export al_account_his 14718 rows exported
.. Exporting table INVOICE 11526 rows exported
.. Exporting table INVOICE_HISTORY 5 rows exported
EXP-00011: BUSINESSDATA. LIST_FEE_AMOUNT_PER_DUNNING does not exist
.. Exporting table RULCOCAP 1 rows exported
EXP-00011: BUSINESSDATA. STEVREAC does not exist
Export terminated successfully with warnings.

It's strange that the table name is not wrong after half a day.

How to make a EXP-00011 error?

I checked it online. It turns out to be:

SQL> show parameter DEFERRED_SEGMENT_CREATION

 

NAME TYPE VALUE

----------------------------------------------------------------------------

Deferred_segment_creation boolean TRUE

 

Parameter issues.

Because there are no records in the table, there is no segment space record, you can manually allocate a space to these tables:

SQL> alter table BUSINESSDATA. STEVREAC allocate extent (size 64 k );

Table altered.

SQL> alter table BUSINESSDATA. ARREARS_REPORT_ACCT allocate extent (size 64 k );

Table altered.

SQL> alter table BUSINESSDATA. LIST_FEE_AMOUNT_PER_DUNNING allocate extent (size
64 k );

Table altered.

Then execute the export operation.

About to export specified tables via Conventional Path...
.. Exporting table ACSTRULE 1 rows exported
.. Exporting table ARREARSCFG 2 rows exported
.. Exporting table ARREARS_REPORT_ACCT 0 rows exported
.. Exporting table CREATE_INVOICE_ACTION 2 rows exported
.. Exporting table paial_account 14639 rows exported
.. Exporting table export al_account_his 14718 rows exported
.. Exporting table INVOICE 11526 rows exported
.. Exporting table INVOICE_HISTORY 5 rows exported
.. Exporting table LIST_FEE_AMOUNT_PER_DUNNING 0 rows exported
.. Exporting table RULCOCAP 1 rows exported
.. Exporting table STEVREAC 0 rows exported
Export terminated successfully without warnings.

Related Article

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.