Are there any documentation for the metadata repository table?
I'm not sure, but this example gave near the created time.
Code:
------------------------------ Commands Entered ------------------------------
SELECT timestamp_col
, TIMESTAMP('1970-01-01') + (timestamp_col * 0.001) SECONDS AS db2_timestamp
FROM (VALUES 1321465242047
, 1321465263973 ) t(timestamp_col)
;
------------------------------------------------------------------------------
TIMESTAMP_COL DB2_TIMESTAMP
-------------------- --------------------------
1321465242047 2011-11-16-17.40.42.047000
1321465263973 2011-11-16-17.41.03.973000
2 record(s) selected.