代码拉取完成,页面将自动刷新
column "avail Gb" format 99999.99
column "%used" format 999.99
column "%free" format 999.99
column "Free Mb" format 9999999.99
set hea on
select a.tablespace_name, round((b.bytes/(1024*1024*1024)),2) "avail Gb",
(100 - nvl(round((a.bytes/b.bytes)*100,2),0)) "%used",
nvl(round((a.bytes/b.bytes)*100,2),0) "%free", nvl(round((a.bytes)/(1024*1024),2),0) "Free Mb"
from sys.sm$ts_free a, sys.sm$ts_avail b, sys.sm$ts_used c
where a.tablespace_name = b.tablespace_name
and b.tablespace_name = c.tablespace_name(+)
and nvl(round((a.bytes/b.bytes)*100,2),0) < 20
order by "avail Gb" desc;
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。