본문 바로가기

데이터베이스/Oracle

tablespace 늘리기

SQLPLUS접속,

1. tablespace 정보 얻기

desc user_tablespaces;

2. tablespace 이름 조회

select tablespace_name from user_tablespaces ;

3. tablespace이름으로 포함된 filename 찾기

select file_name, tablespace_name, bytes from dba_data_files where tablespace_name = 'XXX'

4. tablespace 늘리기

 - 파일추가로 늘리기
    alter tablespace 테이블스페이스명 add datafile '(새)파일명포함경로' size 용량M
  - 기존파일 resize
    alter datafile datafile '파일명포함경로' resize 변환용량 M