26.4.3.29 schema_table_statistics 和 x $ schema_table_statistics 视图

这些视图汇总了 table 统计信息。默认情况下,行按总 await 时间降序排序(争用最多的 table 排在最前面)。

这些视图使用辅助视图x$ps_schema_table_statistics_io

schema_table_statisticsx$schema_table_statistics视图具有以下列:

包含 table 的架构。

table 名。

table 的定时 I/O 事件的总 await 时间。

从 table 中读取的总行数。

table 的定时读取 I/O 事件的总 await 时间。

插入 table 中的总行数。

table 的定时插入 I/O 事件的总 await 时间。

table 中更新的总行数。

table 的定时更新 I/O 事件的总 await 时间。

从 table 中删除的总行数。

table 的定时删除 I/O 事件的总 await 时间。

table 的读取请求总数。

从 table 中读取的字节总数。

从 table 中读取的总 await 时间。

table 的写请求总数。

写入 table 的总字节数。

写入 table 的总 await 时间。

该 table 的其他 I/O 请求总数。

table 的其他 I/O 请求的总 await 时间。

首页