신문지한장

[Tech] oracle undo tablespace 관리 ( 생성, 삭제 ) 본문

Oracle/Tech

[Tech] oracle undo tablespace 관리 ( 생성, 삭제 )

신문지한장 2024. 1. 4. 11:57
OS : CentOS7.9 (64bit)
DB : Oracle Database 19c ( Release - 19.21.0 )

1. undo tablespace 조회

show parameter undo

2. undo tablespace 생성

create undo tablespace undo02 datafile '/oracle/app/oracle/oradata/ORCL19/undo02.dbf' size 100m;

3. undo tablespace 변경

alter system set undo_tablespace=UNDO02;

4. undo tablespace 삭제

* undo_tablespace 변경 후 삭제 가능함

drop tablespace UNDOTBS1;

'Oracle > Tech' 카테고리의 다른 글

[Tech] parameter note  (0) 2024.04.18
oracle bash_profile  (1) 2024.04.18
[Tech] oracle tablespace 및 datafile 생성 및 삭제 (OMF, autoextend)  (1) 2024.01.04
[Tech] oracle ASM 구성  (2) 2023.12.11
[Tech] ACFS filesystem resize  (1) 2023.12.11