单位:字节数

1M=1024KB

1KB=1024B

1.查看表分大小:
  select segment_name, bytes
   from user_segments
   where segment_type = 'TABLE';

 2.查看表实际大小
 analyze table ACL_ENTRY compute statistics;
select num_rows * avg_row_len
from user_tables
where table_name = 'ACL_ENTRY'

相关文章:

  • 2022-12-23
  • 2021-06-15
  • 2021-10-07
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-11-18
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-12-23
  • 2022-01-31
  • 2022-01-17
  • 2021-11-03
  • 2022-02-27
相关资源
相似解决方案