溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

找出mysql最占硬盤的數據

發(fā)布時間:2020-08-01 20:55:07 來源:網絡 閱讀:146 作者:viphyy 欄目:MySQL數據庫

查看每個庫的使用情況

select

table_schema as '數據庫',

sum(table_rows) as '記錄數',

sum(truncate(data_length/1024/1024, 2)) as '數據容量(MB)',

sum(truncate(index_length/1024/1024, 2)) as '索引容量(MB)'

from information_schema.tables

group by table_schema

order by sum(data_length) desc, sum(index_length) desc;


查看每個表的使用情況


select

table_schema as '數據庫',

table_name as '表名',

table_rows as '記錄數',

truncate(data_length/1024/1024, 2) as '數據容量(MB)',

truncate(index_length/1024/1024, 2) as '索引容量(MB)'

from information_schema.tables

order by data_length desc, index_length desc;


向AI問一下細節(jié)

免責聲明:本站發(fā)布的內容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI