>데이터 베이스 >MySQL 튜토리얼 >ORACLE中查看表空间的简要存储状态

ORACLE中查看表空间的简要存储状态

WBOY
WBOY원래의
2016-06-07 14:56:191301검색

查看表空间的简要存储状态 无 select b.tablespace_name "表空间名", round(b.all_byte) "总空间(M)",round(b.all_byte-a.free_byte) "已使用(M)",round(a.free_byte) "剩余空间", round((a.free_byte/b.all_byte)*100)||'%' "剩余百分比" from (select table

查看表空间的简要存储状态
select b.tablespace_name  "表空间名",       
round(b.all_byte)  "总空间(M)",
round(b.all_byte-a.free_byte)  "已使用(M)",
round(a.free_byte)             "剩余空间", 
round((a.free_byte/b.all_byte)*100)||'%'  "剩余百分比"   
from 
(select tablespace_name,sum(nvl(bytes,0))/1024/1024 free_byte from dba_free_space group by tablespace_name) a,
(select tablespace_name,sum(nvl(bytes,0))/1024/1024 all_byte from dba_data_files group by tablespace_name) b
where b.tablespace_name = a.tablespace_name(+)
order by 1,5; 
성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.