개별 파일 변경
LOGFILE RENAME
- 로그파일 조회
select member from v$logfile;
- DB 종료 후 기존 로그파일 이동
cp redo001_old.redo redo001_new.redo
- mount 모드 기동
- RENAME
alter database rename file 'redo001_old.redo' to 'redo001_new.redo';
DATAFILE RENAME
- 데이터파일 조회
select name from v$datafile;
- DB 종료 후 기존 데이터파일 이동
cp usr001_old.dtf usr001_new.dtf
- mount 모드 기동
- RENAME
alter database rename file 'usr001_old.dtf' to 'usr001_new.dtf';
DEFAULT TEMPORARY TABLESPACE
- TEMP TABLESPACE 생성
create temporary tablespace TEMP01 tempfile 'temp01.dtf' size 1024M autoextend off;
- Default temp tablespace 지정
alter database default temporary tablespace TEMP01;
- TEMP tablespace 재생성
drop database TEMP including contents and datafiles;
create temporary tablespace TEMP tempfile 'temp00.dtf' size 1024M autoextend off; - Default 지정
alter database default temporary tablespace TEMP;
drop tablespace TEMP01 including contents and datafiles;