表大小查看

单位:字节数

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'

posted @ 2014-03-05 14:40  IT一族  阅读(259)  评论(0编辑  收藏  举报