테이블스페이스 용량보기
페이지 정보
작성자 서방님 댓글 0건 조회 187회 작성일 08-12-22 19:03본문
* 테이블스페이스 용량보기
select tablespace_name, sum(bytes)/1024/1024 "M",'할당량 M'
from dba_data_files
where tablespace_name = '테이블스페이스이름'
group by tablespace_name
union all
select tablespace_name, sum(bytes)/1024/1024 "M",'여유량 M'
from dba_free_space
where tablespace_name = '테이블스페이스이름'
group by tablespace_name;
댓글목록
등록된 댓글이 없습니다.