简体   繁体   中英

Physical file (table) performance on IBMi

my customer wants me to produce a report of say top 100 most accessed files (PF) with number of reads/writes/updates.

I did not come to any findings so far.

Is it something for PDI or iDoctor or maybe something else?

Take a look at the qsys2.systablestat view...

select table_schema, table_name, system_table_schema, system_table_name 
       , insert_operations, update_operations, delete_operations
from qsys2.systablestat;

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM