Create a custom GEL script with an update statement such as:
update odf_ca_project p
set p.attribute1 = p.attribute2
Release : 15.8
Component : CA PPM SAAS APPLICATION
PostgreSQL does not accept aliases, there the alias would need to be removed from the update statement.
For example, modify the statement from:
update odf_ca_project p
set p.attribute1 = p.attribute2
to
update odf_ca_project
set attribute1 = attribute2