简体   繁体   English

IBMi 上的物理文件(表)性能

[英]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.我的客户希望我生成一份报告,其中包含读取/写入/更新次数最多的前 100 个文件 (PF)。

I did not come to any findings so far.到目前为止,我没有得出任何发现。

Is it something for PDI or iDoctor or maybe something else?它适用于 PDI 或 iDoctor 还是其他什么?

Take a look at the qsys2.systablestat view...看看qsys2.systablestat视图...

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

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

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