When statistics are updated with low keyword, information is not updated at sysdistrib table, hence no traces of timestamp is available. Keywords medium and high will generate columnwise data bins in distrib table.
Following SQL statement will show when & how the last update statistics were run, for medium or high mode only.
select distinct tabname, b.constructed, b.mode
from systables a, sysdistrib b
where a.tabid=b.tabid
order by 1
or can be generated through:
dbschema -d <database> -hd <tabname>
Regards,
Shriyan "The learning and knowledge that we have, is, at the most, but little compared with that of which we are ignorant."
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.