반응형

- 시스템 db 제외한 사용자 DB별 table 사이즈 조회

select
    table_schema,
    table_name,
    table_rows,
    round(data_length/(1024*1024),2) as 'data_size(mb)',
    round(index_length/(1024*1024),2) as 'index_size(mb)'
from   information_schema.tables
where  table_schema not in ( 'mysql','information_schema','performance_schema','test')
group by table_name
order by data_length desc
limit 100;

'DBMS > MySQL&Mariadb' 카테고리의 다른 글

maxscale 관리  (0) 2022.06.16
index 관리  (0) 2022.06.16
mariadb, mysql DB별 사이즈 조회  (0) 2022.06.16
bash로 쿼리 실행  (0) 2022.06.16
mariadb, mysql 시스템 기본 조회  (0) 2022.06.16

+ Recent posts