您的位置:首页 > 数据库 > Oracle

Oracle 系统函数 如何查表记录所占空间大小

2011-11-10 17:27 295 查看
how to search one table's size in Oracle:

--detail information

select * from dba_extents t where

LOWER(segment_name)='t_mnt_form_record' and lower(t.owner)='test_usr' ;

--block count

select count(distinct substr(rowid,1,15)) from t_mnt_form_record

--one block 1 M size

[备注]以后再补充
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: