select OWNER, t.segment_name, t.segment_type, sum(t.bytes / 1024 / 1024) mmm
from dba_segments t
where t.owner = 'STRONG_OCEAN_DUTY_PRO'
and t.segment_type='TABLE'
group by OWNER, t.segment_name, t.segment_type
order by mmm desc;

相关文章:

  • 2022-02-07
  • 2021-05-21
  • 2021-08-31
  • 2021-09-11
  • 2022-01-05
  • 2022-02-16
  • 2021-12-19
  • 2021-12-15
猜你喜欢
  • 2022-12-23
  • 2021-12-21
  • 2022-12-23
  • 2021-07-24
  • 2022-12-23
  • 2021-06-04
相关资源
相似解决方案