The next query results in an error (ORA-00900: Invalid SQL-statement.)
FME_SQL_DELIMITER /
begin
update tbx.ext_compare_person
set gesnam_d = tbx.diakriet_cip(gesnam_d,sourcekey,'GNAAM')
, gesvor = tbx.diakriet_cip(gesvor,sourcekey,'VNAAM')
, gesnam_d_p = tbx.diakriet_cip(gesnam_d_partner,sourcekey,'GNAAM_P')
where organisatiecode = 'ABDC'
and applicatiecode = 'ABC';
end;
/
commit;
/
What am I doing wrong?Thanks in advance.