select
b.file_name 物理文件名,
b.tablespace_name 表空间,
b.bytes/1024/1024 大小M,
(b.bytes-sum(nvl(a.bytes,0)))/1024/1024 已使用M,
substr((b.bytes-sum(nvl(a.bytes,0)))/(b.bytes)*100,1,5) 利用率
from dba_free_space a,dba_data_files b
where a.file_id=b.file_id
group by b.tablespace_name,b.file_name,b.bytes
order by b.tablespace_name
根据表空间名称查询文件位置
Posted 祥翔祥
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了根据表空间名称查询文件位置相关的知识,希望对你有一定的参考价值。
以上是关于根据表空间名称查询文件位置的主要内容,如果未能解决你的问题,请参考以下文章