All i want to merge some data from a remote database into my local database when i run the following code i get this error
ORA-02064: distributed operation not supported
merge into exlinkcopy lct
USING ( SELECT trader,lastlogindate, lastlogintime
from trader@remotehost ) exl
ON (lct.trader = exl.trader)
WHEN MATCHED THEN
update set lct.lastlogindate = exl.lastlogindate , lct.lastlogintime = exl.lastlogintime
I thought database links where supported in oracle 10