SELECT T.OWNER, T.SEGMENT_NAME, SUM(T.BYTES) / 1024 / 1024 M
  FROM DBA_SEGMENTS T
 WHERE T.OWNER = 'user_name'
   AND T.SEGMENT_NAME = 'table_name'
 GROUP BY T.OWNER, T.SEGMENT_NAME;

 

或者

select sum(bytes/1024/1024) M from user_segments where segment_name='table_name';

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-12-23
  • 2022-02-01
  • 2022-01-27
  • 2021-12-19
猜你喜欢
  • 2021-12-12
  • 2021-08-31
  • 2021-12-12
  • 2021-12-22
  • 2022-01-02
  • 2022-12-23
  • 2021-11-05
相关资源
相似解决方案