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

Oracle 表的行数、表占用空间大小,列的非空行数、列占用空间大小 查询

时间:2017-12-21 21:42:02      阅读:166      评论:0      收藏:0      [点我收藏+]

标签:col   log   user   占用   select   gpo   table   ora   tables   

--表名,表占用空间大小(MB),行数
select table_name, round(num_rows * avg_row_len /1024/1024, 8) as total_len, num_rows

from user_tables

where table_name = ‘表名‘

order by table_name;

 

--表名,列名,列占用空间大小(MB),非空行数

select c.table_name, c.column_name, round((t.num_rows - c.num_nulls) * c.avg_col_len /1024/1024, 8) as total_len, t.num_rows - c.num_nulls as nums

from user_tab_columns c

join user_tables t on c.TABLE_NAME = t.TABLE_NAME

where c.table_name = ‘表名‘

order by c.column_name;

Oracle 表的行数、表占用空间大小,列的非空行数、列占用空间大小 查询

标签:col   log   user   占用   select   gpo   table   ora   tables   

原文地址:http://www.cnblogs.com/phoenix-smile/p/8082434.html

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