select tablespace_name from dba_data_files ddf group by tablespace_name;
select * from dba_free_space dfs ;
select a.tablespace_name,
a.bytes / 1024 / 1024 "Sum MB",
(a.bytes - b.bytes) / 1024 / 1024 "used MB",
b.bytes / 1024 / 1024 "free MB",
round(((a.bytes - b.bytes) / a.bytes) * 100, 2) "percent_used"
from (select tablespace_name, sum(bytes) bytes
from dba_data_files
group by tablespace_name) a,
(select tablespace_name, sum(bytes) bytes, max(bytes) largest
from dba_free_space
group by tablespace_name) b
where a.tablespace_name = b.tablespace_name
order by ((a.bytes - b.bytes) / a.bytes) desc;
本文提供了查询Oracle数据库中各表空间使用情况的方法,包括已用空间、剩余空间及使用百分比等关键信息,有助于数据库管理员有效监控和管理数据库存储。
800

被折叠的 条评论
为什么被折叠?



