Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.misc -> Q: Updating a remote table with data from a Local Table
Hi all you Oracle Gurus,
I have a local table with records I want to move to a Remote table with the same table structure. I created a DATABASE LINK and that is working fine.
I created my link with the following syntax: CREATE DATABASE LINK REMOTE_DB connect to username identified by password using 'remoteDATA';
When I use the insert command with the following syntax:
INSERT INTO TEST_ACCT_at_REMOTE_DB SELECT * from LOCAL_DB;
I get the following errors:
INSERT INTO TEST_ACCT_at_REMOTE_DB SELECT * from LOCAL_DB;
*
ORA-00604: error occurred at recursive SQL level 1 ORA-01013: user requested cancel of current operation ORA-02063: preceding 2 lines from REMOTE_DB
What am I doing wrong? Received on Wed Mar 15 2000 - 14:38:15 CST
![]() |
![]() |