How Oracle replicates Clob\blob field data from a remote database to a local database via Datalink

Source: Internet
Author: User

Oracle does not support copying the Clob/blob field data from a remote database table directly to the local database via the databases link.

SQL like the following cannot be performed. (The Ipop_topic table has a CLOB field)

INSERT INTO Ipop_topic
SELECT * from [email protected] where application_id=1000

However, we can use the global temporary table to copy the data to a temporary table, and then move from the staging table to your destination table.

Create global temporary table Ipop_topic_temp
As select * from [email protected] where rownum=1

INSERT INTO Ipop_topic_temp

SELECT * from [email protected] where application_id=1000

INSERT INTO Ipop_topic
SELECT * FROM Ipop_topic_temp

Commit

How Oracle replicates Clob\blob field data from a remote database to a local database via Datalink

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.