Hi There,
Oracle Version: 11g
OS: Solaris 10.
Just wondering if it's possble to insert data into a table based on the "minus" operator please?
We have a very large table on one database, that we moved to another database. The table is off by one row for a certain date range, and we were wondering if it's possible to insert that data row in the remote database using the row difference between the two tables.
Here is the query that we are running:
SELECT ID , TO_CHAR (creation_datetime, 'yyyy-mm-dd')
from TABB10
where TO_CHAR (creation_datetime, 'yyyy-mm-dd')='2014-03-18'
minus
SELECT ID , TO_CHAR (creation_datetime, 'yyyy-mm-dd')
from TABB10@TABB_LINK.APDB00
where TO_CHAR (creation_datetime, 'yyyy-mm-dd')='2014-03-18'
ID TO_CHAR(CR
---------------------- ----------
2.4111E+17 2014-03-18
Any ideas please?
Thanks