表大小查看

单位:字节数table

1M=1024KBselect

1KB=1024Btab

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'co

相关文章
相关标签/搜索