Oracle EXP-00011 export data space time table error Solution

Source: Internet
Author: User

This problem occurs when Oracle exp exports tables and data (when the 10g client is used to export 11g tables and data everywhere );

The solution is as follows:

1. Set the value of deferred_segment_creation to false.

This method is only valid for later tables. The previous tables do not have Segment or are not.

2. Declare to create a Segment immediately when creating a table

Create table XXX (XXX) segment creation immediate;

3. For a table that has been created but does not have a Segment, You can execute alter table XXX allocate extent to create a Segment. Of course, you can also insert a piece of data to create a Segment.

The final solution:

First, query which tables are empty:

Select table_name from user_tables where NUM_ROWS = 0;

The following statement is generated using select:

Select 'alter table' | table_name | 'allocate extent; 'from user_tables where num_rows = 0

Then copy and execute the generated modification statement to solve the problem.

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.