文件首頁
MySQL 9.0 參考手冊
相關文件 下載本手冊
PDF (美式信紙) - 40.0Mb
PDF (A4) - 40.1Mb
Man Pages (TGZ) - 258.2Kb
Man Pages (Zip) - 365.3Kb
Info (Gzip) - 4.0Mb
Info (Zip) - 4.0Mb


MySQL 9.0 參考手冊  /  ...  /  schema_table_statistics 和 x$schema_table_statistics 檢視

30.4.3.29 schema_table_statistics 和 x$schema_table_statistics 檢視

這些檢視摘要資料表統計資料。預設情況下,資料列會依總等待時間的降序排序(爭用最嚴重的資料表優先)。

這些檢視使用輔助檢視 x$ps_schema_table_statistics_io

schema_table_statisticsx$schema_table_statistics 檢視具有下列欄:

  • table_schema

    包含資料表的 schema。

  • table_name

    資料表名稱。

  • total_latency

    資料表的計時 I/O 事件的總等待時間。

  • rows_fetched

    從資料表讀取的總資料列數。

  • fetch_latency

    資料表的計時讀取 I/O 事件的總等待時間。

  • rows_inserted

    插入資料表的總資料列數。

  • insert_latency

    資料表的計時插入 I/O 事件的總等待時間。

  • rows_updated

    在資料表中更新的總資料列數。

  • update_latency

    資料表的計時更新 I/O 事件的總等待時間。

  • rows_deleted

    從資料表刪除的總資料列數。

  • delete_latency

    資料表的計時刪除 I/O 事件的總等待時間。

  • io_read_requests

    資料表的總讀取請求數。

  • io_read

    從資料表讀取的總位元組數。

  • io_read_latency

    從資料表讀取的總等待時間。

  • io_write_requests

    資料表的總寫入請求數。

  • io_write

    寫入資料表的總位元組數。

  • io_write_latency

    寫入資料表的總等待時間。

  • io_misc_requests

    資料表的其他 I/O 請求總數。

  • io_misc_latency

    資料表的其他 I/O 請求的總等待時間。