真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

如何查看MySQL數(shù)據(jù)庫表容量的大小-創(chuàng)新互聯(lián)

本文主要給大家介紹如何查看MySQL數(shù)據(jù)庫表容量的大小,文章內(nèi)容都是筆者用心摘選和編輯的,具有一定的針對性,對大家的參考意義還是比較大的,下面跟筆者一起了解下如何查看MySQL數(shù)據(jù)庫表容量的大小吧。

創(chuàng)新互聯(lián)公司是專業(yè)的高淳網(wǎng)站建設(shè)公司,高淳接單;提供網(wǎng)站制作、成都做網(wǎng)站,網(wǎng)頁設(shè)計,網(wǎng)站設(shè)計,建網(wǎng)站,PHP網(wǎng)站建設(shè)等專業(yè)做網(wǎng)站服務(wù);采用PHP框架,可快速的進行高淳網(wǎng)站開發(fā)網(wǎng)頁制作和功能擴展;專業(yè)做搜索引擎喜愛的網(wǎng)站,專業(yè)的做網(wǎng)站團隊,希望更多企業(yè)前來合作!

1.查看所有數(shù)據(jù)庫容量大小


select table_schema as '數(shù)據(jù)庫',sum(table_rows) as '記錄數(shù)',sum(truncate(data_length/1024/1024, 2)) as '數(shù)據(jù)容量(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.查看所有數(shù)據(jù)庫各表容量大小


select table_schema as '數(shù)據(jù)庫',
table_name as '表名',
table_rows as '記錄數(shù)',truncate(data_length/1024/1024, 2) as '數(shù)據(jù)容量(MB)',truncate(index_length/1024/1024, 2) as '索引容量(MB)'from information_schema.tablesorder by data_length desc, index_length desc;

3.查看指定數(shù)據(jù)庫容量大小


例:查看mysql庫容量大小

select table_schema as '數(shù)據(jù)庫',sum(table_rows) as '記錄數(shù)',sum(truncate(data_length/1024/1024, 2)) as '數(shù)據(jù)容量(MB)',sum(truncate(index_length/1024/1024, 2)) as '索引容量(MB)'from information_schema.tableswhere table_schema='mysql';

如何查看MySQL數(shù)據(jù)庫表容量的大小
4.查看指定數(shù)據(jù)庫各表容量大小


例:查看mysql庫各表容量大小

select table_schema as '數(shù)據(jù)庫',
table_name as '表名',
table_rows as '記錄數(shù)',truncate(data_length/1024/1024, 2) as '數(shù)據(jù)容量(MB)',truncate(index_length/1024/1024, 2) as '索引容量(MB)'from information_schema.tableswhere table_schema='mysql'order by data_length desc, index_length desc;

如何查看MySQL數(shù)據(jù)庫表容量的大小

看完以上關(guān)于如何查看MySQL數(shù)據(jù)庫表容量的大小,很多讀者朋友肯定多少有一定的了解,如需獲取更多的行業(yè)知識信息 ,可以持續(xù)關(guān)注我們的行業(yè)資訊欄目的。

另外有需要云服務(wù)器可以了解下創(chuàng)新互聯(lián)scvps.cn,海內(nèi)外云服務(wù)器15元起步,三天無理由+7*72小時售后在線,公司持有idc許可證,提供“云服務(wù)器、裸金屬服務(wù)器、高防服務(wù)器、香港服務(wù)器、美國服務(wù)器、虛擬主機、免備案服務(wù)器”等云主機租用服務(wù)以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡單易用、服務(wù)可用性高、性價比高”等特點與優(yōu)勢,專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應(yīng)用場景需求。


新聞標題:如何查看MySQL數(shù)據(jù)庫表容量的大小-創(chuàng)新互聯(lián)
瀏覽地址:http://weahome.cn/article/hhpdj.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部