728x90
반응형
1. DB 전체 용량 확인
select sum(bytes) from dba_data_files;
select sum(bytes)/1024/1024/1024 ||'GB' from dba_data_files;
2. DB 사용량 확인
select sum(bytes) from dba_segments;
select sum(bytes)/1024/1024/1024 ||'GB' from dba_segments;
3. DB 여유량 확인
select sum(bytes) from dba_free_space;
select sum(bytes)/1024/1024/1024 ||'GB' from dba_free_space;
728x90
반응형
'DB > Oracle' 카테고리의 다른 글
ORA-01031: insufficient privileges / ORA-01031: 권한이 불충분합니다 (1) | 2021.07.25 |
---|---|
오라클 테이블 데이터 삭제하기 (1) | 2021.04.11 |
오라클 out 변수있는 프로시져 실행하는 방법 (1) | 2021.04.07 |
ORA-28040: No matching authentication protocol 오류 해결하기 (3) | 2021.04.07 |
오라클 테이블, 컬럼 조회 쿼리 (1) | 2021.04.03 |