码迷,mamicode.com
首页 > 数据库 > 详细

Oracle 查看表存储内存

时间:2016-04-27 01:38:51      阅读:190      评论:0      收藏:0      [点我收藏+]

标签:

 

--分配表的物理存储
1
select segment_name, bytes 2 from user_segments 3 where segment_type = TABLE; 4 5 Select Segment_Name,Sum(bytes)/1024/1024 From User_Extents Group By Segment_Name

 

 

 

select num_rows * avg_row_len from user_tables where table_name = FCT_QUERY_LOG;

 

 

 

Oracle 查看表存储内存

标签:

原文地址:http://www.cnblogs.com/fkissx/p/5437306.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!