问题描述
我的客户希望我生成一份报告,该报告说前100个最常访问的文件(PF),其中包含读取/写入/更新的次数。
到目前为止,我还没有发现任何结果。
是用于PDI还是iDoctor,还是其他?
解决方法
看看qsys2.systablestat视图...
select table_schema,table_name,system_table_schema,system_table_name,insert_operations,update_operations,delete_operations
from qsys2.systablestat;