1.统计某个库的各个表的数据和索引的占用空间大小

select
TABLE_NAME,
concat(truncate(data_length/1024/1024,2),' MB') as data_size,
concat(truncate(index_length/1024/1024,2),' MB') as index_size
from information_schema.tables
where TABLE_SCHEMA = 'tdxbak'
order by data_length desc;

 

2.统计某个库的某个表的占用空间大小

SELECT
concat( round( sum( data_length / 1024 / 1024 / 1024 ), 2 ), 'G' ) AS DATA
FROM
information_schema.TABLES
WHERE
table_schema = 'tdxtest'
AND table_name = 'shark_user';

相关文章:

  • 2021-08-31
  • 2021-11-17
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-11-19
  • 2021-10-04
  • 2022-02-01
猜你喜欢
  • 2022-12-23
  • 2021-06-19
  • 2022-01-25
  • 2021-11-05
  • 2021-09-22
  • 2021-08-17
相关资源
相似解决方案