1.檢視所有資料庫容量大小
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;
2.檢視所有資料庫各表容量大小
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;
3.檢視指定資料庫容量大小
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.檢視指定資料庫各表容量大小
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
where table_schema=『mysql』
order by data_length desc, index_length desc;
nmon監控linux資源使用情況
mkdir root tmp nmon 建立乙個解壓內容目錄 解壓內容到指定目錄 chmod x root tmp nmon 賦予該目錄下內容有執行許可權。root tmp nmon nmon x86 64 centos6 執行該程式,比如說我現在用的是centos6.5 64位,那麼我們就選擇nm...
使用pidstat檢視程序資源使用情況
引言 在檢視系統資源使用情況時,很多任務具為我們提供了從裝置角度檢視的方法。例如使用iostat檢視磁碟io統計資訊 linux iostat d 3 device tps blk read s blk wrtn s blk read blk wrtn sda 1.67 0.00 40.00 012...
使用pidstat檢視程序資源使用情況
在檢視系統資源使用情況時,很多任務具為我們提供了從裝置角度檢視的方法。例如使用iostat檢視磁碟io統計資訊 linux iostat d 3 device tps blk read s blk wrtn s blk read blk wrtn sda 1.67 0.00 40.00 0 120 ...