Hi,
Using oracle 10.2.0.4 and have statement below
MERGE INTO table@remote_dbase a
USING (SELECT product_num
, supplier_num
from products p
where p.prod_num = 777777
)b
ON (a.prod_num = b.prod_num)
WHEN MATCHED
THEN UPDATE
SET a.supplier_num = b.supplier_num
but get message
ORA-02064 - distributed opeartion not supported.
Why is this?
Is there a way to do a merge to a remote database using a database link?
Thanks