>  기사  >  데이터 베이스  >  Oracle表空间相关查询

Oracle表空间相关查询

WBOY
WBOY원래의
2016-06-07 17:00:251095검색

1. 查表空间名字、大

1. 查表空间名字、大小、已用大小、未用大小、已用百分比、未用百分比

select tablespace_name, sum(totalM), sum(usedM), sum(remainedM),
           sum(usedM) / sum(totalM) * 100, sum(remainedM) / sum(totalM) * 100
from
(
  select b.file_id, b.tablespace_name, b.file_name,
  b.bytes / 1024 / 1024  totalM,
  ( b.bytes - sum( nvl( a.bytes, 0) ) ) / 1024 / 1024 usedM,
  sum( nvl(a.bytes,0) ) / 1024 / 1024  remainedM,
  sum( nvl(a.bytes,0) ) / (b.bytes) * 100 usedPer,
  (100-sum( (nvl(a.bytes,0) ) / (b.bytes) * 100)) remainedPer
  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.file_id, b.bytes
  order by b.tablespace_name
)
group by tablespace_name

linux

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.