重庆思庄Oracle、Redhat认证学习论坛

标题: 临时表空间使用率查询sql语句 [打印本页]

作者: mahan    时间: 2023-9-10 13:17
标题: 临时表空间使用率查询sql语句
有时候巡检数据库不会查看临时表空间的使用率情况,下面这个语句可以帮你更好的关注数据库临时表空间的情况


select c.tablespace_name,
to_char(c.bytes/1024/1024/1024,'99,999.999') total_gb,
to_char( (c.bytes-d.bytes_used)/1024/1024/1024,'99,999.999') free_gb,
to_char(d.bytes_used/1024/1024/1024,'99,999.999') use_gb,
to_char(d.bytes_used*100/c.bytes,'99.99') || '%'use
from (select tablespace_name,sum(bytes) bytes
from dba_temp_files GROUP by tablespace_name) c,
(select tablespace_name,sum(bytes_cached) bytes_used
from v$temp_extent_pool GROUP by tablespace_name) d
where c.tablespace_name = d.tablespace_name;






欢迎光临 重庆思庄Oracle、Redhat认证学习论坛 (http://bbs.cqsztech.com/) Powered by Discuz! X3.2