Hi All,
I have a database link created between mySQL (5.1) and Oracle (10.2) and it's working fine when it comes to select statements.
But when I try to run updates I'm getting oracle errors.
Seems something wrong with my sql expression.
UPDATE products@booklink set "is_visible" = 'Yes', "price" = '55', "description" = 'dsds' where "product_id"='456';
Error is
ORA-00904: "description" : invalid identifier
using double quotes for values doesn't sovle the issue and using without any quotes as well.
Any help would be really appreaciated.