I've tried this update sql-statement with postgres it won't work. With oracle,... it's okay. How I can handle this with postgres?
update person SET (person_id, account, title, firstname, lastname, active) = (select person_pk as id1, uid, titel, vorname, familienname, true from fas.person p where person_pk=1540);
update person SET (person_id, account, title, firstname, lastname, active) = (select person_pk as id1, uid, titel, vorname, familienname, true from fas.person p where person_pk=1540);