프로시져에서 데이터를(20만건) |
undo tablespace 로 지정된 datafile 의 수치를 늘려 주세요...
아무리 undo 관리가 자동으로 되 있다고 하더라도.. 트랜잭션이 진행되는 가운데..
undo image 를 더 넣을 곳이 없다면 에러가 발생합니다.
alter database datafile ' full path ' resize
alter tablespace tablespace_name add datafile ' full path' size
두 방법중 하나를 택하면 될거 같습니다.
수고하세요...
요약하면 select * from dba_data_files; 쿼리를 날려서 해당 undo tablespace 용량을 늘리란 얘기다.
alter database datafile '/home/oracle/tablespace/mytb01.dbf' resize 20m;
'oracle' 카테고리의 다른 글
tablespace 관련 명령어 (0) | 2017.01.15 |
---|---|
오라클 사용량 DB 사이즈 확인 (0) | 2017.01.13 |
oracle redo log file (0) | 2017.01.13 |
tablespace에 대한 고찰!! (0) | 2017.01.10 |
오라클 테이블스페이스 용량 늘리기 tablespace (0) | 2016.10.21 |