When trying to reverse engineer from DB2 11 on ZOS all identity columns and timestamp columns with 'FOR EACH ROW ON UPDATE AS ROW CHANGE TIMESTAMP' are not handled correctly. These attributes seems to be ignored by Powerdesigner.
This is how identity columns look like after beeing reverse engineered:
Source column defined like this:
id integer not null generated by default as identity (cycle)
And columns defined like this:
last_login timestamp not null generated by default for each row on update as row change timestamp
is looking like this after after beeing reverse engineered (ordinary timestamp column):
Any suggestions how to get this to work properly?
Arild