年末了,表空间也涨到95%了,得要马上扩展表空间,增加数据文件,才能过一个安稳年。增加表空间的时候,我们先查询表空间的占用情况,使用sql如下:
select upper(f.tablespace_name) "表空间名",
d.tot_grootte_mb "表空间大小(M)",
d.tot_grootte_mb - f.total_bytes "已使用空间(M)",
to_char(round((d.tot_grootte_mb - f.total_bytes) / d.tot_grootte_mb * 100,
2),
'990.99') "使用比",
f.total_bytes "空闲空间(M)",
f.max_bytes "最大块(M)"
from (select