Following up on my earlier query , is there a way to specify the condition for the records that would be copied over using the column names on the same table? i.e. I want to copy all data from sandbox server to production server for all rows where COL_A in sandbox that do not exist in the production server. So the intended select query should be:
SELECT * FROM <Sandbox><TABLE_C> WHERE <Sandbox><TABLE_C>COL_A NOT EXISTS (SELECT <production>COL_A FROM <production>TABLE_C)
i.e. all the records from sandbox to production where a matching COL_A could not be found
COPYcommand as you were in the prior question? Or are you trying to write a distributed query using database links? – Justin Cave Feb 7 at 23:59CREATE DATABASE LINK) that you are trying to write distributed SQL to utilize? Or are you trying to use the SQL*PlusCOPYcommand? – Justin Cave Feb 8 at 1:48