00039.Oracle查询表空间文件大小

来源:互联网 发布:ps照片合成软件 编辑:程序博客网 时间:2024/06/05 10:53
select sum(d.bytes)/1024/1024/1024||'G' as total_bytes, d.tablespace_name
  from dba_data_files d
 where d.tablespace_name = 'UNDOTBS03'
 group by d.tablespace_name
 
 --
select * from v$tablespace