SUM(data_length+index_length)/1024/1024"SizeinMB"->FROMinformation_schema.TABLESGROUPBYtable_schema;+---------- ----------+----------------+|Database &"/> SUM(data_length+index_length)/1024/1024"SizeinMB"->FROMinformation_schema.TABLESGROUPBYtable_schema;+---------- ----------+----------------+|Database &">

首頁  >  文章  >  資料庫  >  如何查看所有MySQL資料庫的大小?

如何查看所有MySQL資料庫的大小?

WBOY
WBOY轉載
2023-09-17 12:17:09717瀏覽

如何查看所有MySQL資料庫的大小?

我們可以利用以下語句檢查所有MySQL資料庫的大小

mysql> SELECT table_schema "Database",
-> SUM(data_length + index_length)/1024/1024 "Size in MB"
-> FROM information_schema.TABLES GROUP BY table_schema;

+--------------------+----------------+
| Database           | Size in MB     |
+--------------------+----------------+
| gaurav             | 1.04785156     |
| information_schema | 0.00878906     |
| mysql              | 0.68551350     |
| performance_schema | 0.00000000     |
| sample             | 0.04687500     |
| tutorial           | 0.03125000     |
+--------------------+----------------+

6 rows in set, 1 warning (0.33 sec)

以上是如何查看所有MySQL資料庫的大小?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:tutorialspoint.com。如有侵權,請聯絡admin@php.cn刪除