I don't think that you can get the record length from syscat views. But you can get it by using select sum(length) from syscat.columns where tabschema='<SOME_SCHEMA>' and tabname='<SOME_TABLE>'
The results in the following query do not reflet the same record lenght displayed in Control Center, Estimate Statistics panel in UDB AIX. Why? How could I build a query that generate record lenght for every table?
select tabname,sum(length)
from syscat.columns
where tabschema = '<schema-name>'
group by tabname
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.