用命令檢視Mysql中某個資料庫的大小?
要想知道每個資料庫的大小的話,步驟如下:
1、進入information_schema 資料庫(存放了其他的資料庫的資訊)
use information_schema;
2、查詢所有資料的大小:
select concat(round(sum(data_length/1024/1024),2),'MB') as data from tables;
3、檢視指定資料庫的大小:
比如檢視資料庫home的大小
select concat(round(sum(data_length/1024/1024),2),'MB') as data from tables where table_schema='home';
4、檢視指定資料庫的某個表的大小
比如檢視資料庫home中 members 表的大小
select concat(round(sum(data_length/1024/1024),2),'MB') as data from tables where table_schema='home' and table_name='members';
補充:
其實單獨檢視某個表的大小,沒有必要去使用sql語句,使用mysql命令:show table status like 'table_name'\G 即可。
這樣更加快捷方便。但是檢視具體某個資料庫的大小必須要用sql語句去查。
1、進入information_schema 資料庫(存放了其他的資料庫的資訊)
use information_schema;
2、查詢所有資料的大小:
select concat(round(sum(data_length/1024/1024),2),'MB') as data from tables;
3、檢視指定資料庫的大小:
比如檢視資料庫home的大小
select concat(round(sum(data_length/1024/1024),2),'MB') as data from tables where table_schema='home';
4、檢視指定資料庫的某個表的大小
比如檢視資料庫home中 members 表的大小
select concat(round(sum(data_length/1024/1024),2),'MB') as data from tables where table_schema='home' and table_name='members';
補充:
其實單獨檢視某個表的大小,沒有必要去使用sql語句,使用mysql命令:show table status like 'table_name'\G 即可。
這樣更加快捷方便。但是檢視具體某個資料庫的大小必須要用sql語句去查。
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/29874631/viewspace-1332526/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 用SQL命令檢視Mysql資料庫大小MySql資料庫
- 【SQLServer】如何檢視某個資料庫中,每個table的資料量大小SQLServer資料庫
- MySQL命令檢視資料庫和表容量大小MySql資料庫
- 檢視資料庫大小的通用命令:資料庫
- Linux檢視MYSQL資料庫容量大小命令LinuxMySql資料庫
- 檢視MySQL資料庫的命令MySql資料庫
- 檢視某個資料庫在快取中的髒資料資料庫快取
- 檢視MySQL資料庫大小的方法總結MySql資料庫
- MYSQL-檢視資料庫或表的大小MySql資料庫
- 百度網盤資料夾大小怎麼檢視?百度網盤檢視某個資料夾大小的技巧
- [Mysql]檢視每個資料庫大小以及每個表最後的修改時間MySql資料庫
- MySQL資料庫之mysql5.7基礎 檢視一個資料庫中的所有表MySql資料庫
- 檢視資料庫資料檔案的總大小資料庫
- 檢視oracle資料庫真實大小Oracle資料庫
- 用srvctl 命令停止RAC 資料庫某個例項資料庫
- aix下檢視各個資料夾大小AI
- MySQL檢視當前資料庫庫MySql資料庫
- 檢視資料庫中的物件資料庫物件
- MySQL資料庫檢視:檢視定義、建立檢視、修改檢視MySql資料庫
- mysql檢視錶大小MySql
- 檢視資料檔案大小
- LINUX中如何檢視某個埠是否被佔用Linux
- mysql binlog檢視指定資料庫MySql資料庫
- 檢視使用者的資料佔用的空間大小
- 檢視資料庫中各表資訊資料庫
- 三種檢視MySQL資料庫版本的方法MySql資料庫
- mysql資料庫中decimal資料型別比較大小MySql資料庫Decimal資料型別
- <摘錄>CentOS怎麼檢視某個命令的原始碼CentOS原始碼
- SQL Server 2005 檢視資料庫表的大小 按照表大小排列SQLServer資料庫
- 【GP】透過資料字典檢視某個表的欄位
- 資料庫各個檢視的內容資料庫
- 查詢MySQL資料庫,MySQL表的大小MySql資料庫
- mongodb查詢資料庫中某個欄位中的值包含某個字串的方法MongoDB資料庫字串
- linux 檢視不同目錄的多個資料夾大小Linux
- Oracle常用命令 檢視資料庫的SQLOracle資料庫SQL
- 獲取某個資料所在資料列表中的行數 mysqlMySql
- MySQL 庫大小、表大小、索引大小查詢命令MySql索引
- MYSQL 匯出資料庫中某張表的部分數…MySql資料庫