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

Posted Phoenix-Smile

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Oracle 表的行数表占用空间大小,列的非空行数列占用空间大小 查询相关的知识,希望对你有一定的参考价值。

--表名,表占用空间大小(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 表的行数表占用空间大小,列的非空行数列占用空间大小 查询的主要内容,如果未能解决你的问题,请参考以下文章

牛客Shell实战题目1~8

查看SqlServer某张表的物理空间占用情况

如何用SQL语句求oracle 数据库所有表的行数?

oracle查看所有表及各表行数

oracle 查询出 表的空间大小 占用存储空间

查询数据库和表的大小