查询Oracle数据库中各对象占用空间情况

来源:互联网 发布:知君本无邪txt 编辑:程序博客网 时间:2024/05/19 06:15


查询Oracle数据库中各对象占用空间情况:

select A.Segment_Name,Sum(A.bytes)/1024/1024 from user_extents A
where A.tablespace_name = 'RAS'
group by A.segment_name
order by Sum(A.bytes)/1024/1024 desc

0 0
原创粉丝点击