ORA-01691 해결 방법

1308 단어 ora

Caused by: com.ibatis.common.jdbc.exception.NestedSQLException:   
--- The error occurred in CommonSqlMap.xml.  
--- The error occurred while applying a parameter map.  
--- Check the IfTask.insert-InlineParameterMap.  
--- Check the statement (update failed).  
--- Cause: java.sql.SQLException: ORA-01691: unable to extend lob segment ICPMIS.SYS_LOB0000112366C00006$$ by 8192 in tablespace ICPMIS

최근 정시 작업표의 데이터는 xml 파일이 너무 커서 제때에 정리하지 못했기 때문에 MDM 압축 파일 피드백에서 상기 오류가 발생하여 이해하지 못했다. 나중에 물어본 후에 데이터베이스 테이블 공간이 부족하다는 것을 알았다. 나중에 로그를 사용하지 않는 한 무더기를 정리한 후에 시스템이 정상적이었다.
ORA-01691에 대한 해결책은 다음과 같습니다.
  
오류 정보를 보면 테이블 공간에 새 공간을 할당할 수 없기 때문입니다.그래서 잘못 보고했어.
다음은oracle 공식 오류 코드입니다.
ORA-01691 unable to extend lob segment string.string by string in tablespace string
Cause: Failed to allocate an extent for LOB segment in tablespace.
Action: Use ALTER TABLESPACE ADD DATAFILE statement to add one or more files to the tablespace indicated.
다음은 해결 방법입니다.
메서드1: 데이터 파일의 확장성 수정
alter database datafile'파일 경로'autoextend on next 100m maxsize 4000M;
방법 2: 테이블 공간에 새로운 데이터 파일 추가
alter tablespace jack_data add datafile'데이터 파일 경로'size 1000m autoextend on next 100m maxsize 4000M

좋은 웹페이지 즐겨찾기