Oracle11g exp export problem: some tables cannot be exported, oracle11gexp

Source: Internet
Author: User

Oracle11g exp export problem: some tables cannot be exported, oracle11gexp

An issue found during command exp export from oracle is that some tables cannot be completely exported. After checking, it is found that any blank table cannot be exported.

In the following table, it is found that segment_created cannot be exported for NO. After query, extract the statement and execute it.

Select 'alter table' | table_name | 'allocate extent ;'
From user_tables where segment_created = 'no ';

Alter table allocate extent;

Note: One feature in 11g is the deferred_segment_creation parameter. The default value is true, indicating that the segment creation is delayed. When a new table is created and the table has no data

The table does not allocate extent. Therefore, the table does not occupy data space, and no segment is allocated. As a result, exp cannot be exported. Therefore, based on the above method, query the user_tables table. If segment_created is NO, NO segment is allocated to the table, and execute the query.

Copyright Disclaimer: This article is an original article by the blogger and cannot be reproduced without the permission of the blogger.

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.