标签:oracl pac space alt nbsp sys com sed png
SYSTEM的只有2M可以用了,还是需要 扩增 SYSTEM和SYSAUX的表空间
SELECT a.tablespace_name,
a.bytes/1024/1024 total_M,
b.bytes/1024/1024 used_M,
c.bytes/1024/1024 free_M,
(b.bytes * 100) / a.bytes "% USED ",
(c.bytes * 100) / a.bytes "% FREE "
FROM sys.sm$ts_avail a, sys.sm$ts_used b, sys.sm$ts_free c
WHERE a.tablespace_name = b.tablespace_name
AND a.tablespace_name = c.tablespace_name
标签:oracl pac space alt nbsp sys com sed png
原文地址:https://www.cnblogs.com/Nina-piaoye/p/11712153.html