Home > Database > Mysql Tutorial > ORACLE中查看表空间的简要存储状态

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

WBOY
Release: 2016-06-07 14:56:19
Original
1329 people have browsed it

查看表空间的简要存储状态 无 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; 
Copy after login
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template