GBase 8a
运维管理
文章

查看某个表总共占用的空间

发表于2025-12-25 10:38:0943次浏览0个评论
  • 查看某个表总共占用的空间

select * from information_schema.cluster_tables a where table_schema=‘ssbm’ and table_name=‘lineorder’;

  • 查看每个分片的空间,检查是否均匀分布

select * from information_schema.CLUSTER_TABLE_SEGMENTS a where table_schema=‘ssbm’ and table_name=‘lineorder’;

评论

登录后才可以发表评论