본문 바로가기

Oracle

ORA-12012: error on auto execute of job

ORA-12012: error on auto execute of job "SYS"."ORA$AT_SQ_SQL_SW_8633"

ORA-38153: Software edition is incompatible with SQL plan management.

ORA-06512: at "SYS.DBMS_SPM_INTERNAL", line 6014

ORA-06512: at "SYS.DBMS_SPM", line 2781

ORA-06512: at line 34

 

 

이 에러는 오라클 Standard Edition에서 SQL Plan Management 기능이 지원되지 않아 발생합니다. 에러를 없애려면 SQL Tuning Advisor 오토태스크를 비활성화해야 하며, 아래 쿼리를 실행하면 해결됩니다.

 

 

BEGIN
  DBMS_AUTO_TASK_ADMIN.DISABLE (
    client_name => 'sql tuning advisor',
    operation   => NULL,
    window_name => NULL
  );
END;
/

'Oracle' 카테고리의 다른 글

오라클 리스너(Listener) 설치  (0) 2025.07.23
오라클 19c Instance 생성  (0) 2025.07.23
오라클 19c 설치 가이드  (0) 2025.07.23
오라클 19C 설치 전 환경 설정  (0) 2025.07.23
리눅스 공유 메모리 [펌]  (0) 2019.09.06