The documentation (Administrative API Reference, 8.2, PDF format) says
page 520:
"The rest of the record is dependent upon the record type and the table
descriptor record defined for the table."
How can the record descriptor by composed for existing tables (not in
the log file as new entry) or is mentioned somewhere?
select colname, colno, rtrim(typename), length, scale,
coalesce(generated,' '),nulls, ... from syscat.columns where
TABSCHEMA= ? and TABNAME= ? order by colno
and first 1. fixed length columns from left to right
then 2. variable length columns from left to right
?
(as the insert log record has first fixed length columns, then variable
length columns).
Bernard Dhooghe