Tips for transferring massive Oracle Data"

Source: Internet
Author: User

If you want to transfer massive Oracle data (more than 80 Mb) to another user or related tablespace in actual operations. We recommend that you use the following methods to quickly transfer data. That is, the method for creating a new table and the method for directly inserting it .

I. How to create a new table

 
 
  1. Create table target_tablename tablespace
  2. Target_tablespace_name nologging
  3. Pctfree 10 pctused 60
  4. Storage (initial 5 M next 5 M minextents 1
  5. Maxextents unlimited pctincrease 0)
  6. As select * from username. source_tablename where condition;

Note: The newly created table does not have the index and default value of the original table. Only non-null constraints can be inherited. Other constraints or indexes need to be re-created.

2. Direct insertion

 
 
  1. INSERT/* + APPEND */INTO target_tablename
  2. SELECT * FROM username. source_tablename where condition;
  3. COMMIT;

Note:

Using the INSERT/* + APPEND */method generates an exclusive lock of 6 for target_tablename. If you run this command, DML operations on target_tablename will be queued after it, it is not suitable for the table operations used by the OLTP system.

Note: When transferring data, these two methods do not use the data buffer zone and rollback segment of transaction processing in SGA, nor do they write online transaction logs, writing data directly to physical files, just like the Database loading tool Solload, is fast. All Versions later than Oracle8i can be used.

The above content is an introduction to the specific operation solution for quickly transferring massive Oracle data. I hope you will get some benefits.

Article by: http://database.csdn.net/c_oracle/tag/2

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.