中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

mysql數據庫容量查詢

發布時間:2020-02-28 18:04:21 來源:網絡 閱讀:167 作者:王小酸 欄目:MySQL數據庫

1.查看所有數據庫容量大小

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.tablesgroup?by?table_schemaorder?by?sum(data_length) desc, sum(index_length) desc;

2.查看所有數據庫各表容量大小

selecttable_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.tablesorder?by?data_length desc, index_length desc;

3.查看指定數據庫容量大小

例:查看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
where table_schema='mysql';

4.查看指定數據庫各表容量大小

例:查看mysql庫各表容量大小
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.tableswhere?table_schema='smartmonitor'order?by?data_length desc, index_length desc;
向AI問一下細節

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

AI

钟山县| 项城市| 永寿县| 剑川县| 镇沅| 禄劝| 丹寨县| 建始县| 明水县| 格尔木市| 紫金县| 新蔡县| 宽甸| 比如县| 岳西县| 莎车县| 铁力市| 万州区| 新河县| 娄底市| 出国| 西丰县| 叶城县| 永丰县| 时尚| 宜君县| 渭南市| 会同县| 忻城县| 高唐县| 合江县| 衡东县| 菏泽市| 新竹市| 巴青县| 汉源县| 桐柏县| 敖汉旗| 潮安县| 澳门| 辰溪县|