IBMi 上的物理文件 (table) 性能
Physical file (table) performance on IBMi
我的客户希望我生成一份报告,其中包含数量为 reads/writes/updates.
的前 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;
我的客户希望我生成一份报告,其中包含数量为 reads/writes/updates.
的前 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;