jianingy=# select pg_relation_size('contact');pg_relation_size
------------------
425984
(1 row)
jianingy=# select pg_size_pretty(pg_relation_size('contact'));pg_size_pretty
----------------
416 kb
(1 row)
select indexrelname, pg_size_pretty(pg_relation_size(indexrelname))from pg_stat_user_indexes where
schemaname = 'public' order by pg_relation_size(indexrelname) desc;
select relname, pg_size_pretty(pg_relation_size(relname))取自"from pg_stat_user_tables where
schemaname = 'public' order by pg_relation_size(relname) desc;
mysql 檢視資料庫 表 大小
記錄備忘 1 進去指定schema 資料庫 存放了其他的資料庫的資訊 use information schema 2 查詢所有資料的大小 select concat round sum data length 1024 1024 2 mb as data from tables 3 檢視指定資料庫...
mysql檢視資料庫大小或者表大小
要想知道每個資料庫的大小的話,步驟如下 1 進入information schema 資料庫 存放了資料庫的資訊 use information schema 2 查詢所有資料庫的大小 select concat round sum data length 1024 1024 2 mb as dat...
MYSQL 檢視資料庫大小以及表的大小
在mysql的information schema資料庫下執行 一 檢視每個資料庫的大小 select table schema,concat round sum data length 1024 1024 2 mb as data from tables group by table schema...