Quote:
Originally posted by GoldenBoy
Can anyone tell me how to tell when the last time update statistics was run for a table (or all tables)? I was surprized that this wasnt in the online.log, but I am new to informix. thx
|
Hi there,
Try the below statement
select distinct tabname, b.constructed, b.mode
from systables a, sysdistrib b
where a.tabid=b.tabid
order by 1
Regards,
lloyd