ORACLE

오라클 purge시 ORA-04088: 트리거 'DBSEC.SDB220001'의 수행시 오류

정보 집합 2023. 11. 8. 20:57
반응형

purge recyclebin를 하는도중 오류가 떳다.

생각보다 자료가 잘 안나온다.

오라클 12c 트리거 문제가 있는것 같다.

대충 트리거를 잠시 정지해두고 삭제후 다시 복구 해결은 됬지만 내용은 정확히 파악못함

흠... 지금 할일이 있어서 자세한 검색은 나중에... 시간나면...

ALTER SYSTEM SET "_system_trig_enabled"=false scope=memory;
purge DBA_RECYCLEBIN;
ALTER SYSTEM SET "_system_trig_enabled"=true scope=memory;

 

ORA-00604: 순환 SQL 레벨 1 에 오류가 발생했습니다
ORA-04088: 트리거 'DBSEC.SDB220001'의 수행시 오류
ORA-00604: 순환 SQL 레벨 2 에 오류가 발생했습니다
ORA-20001: [SDB220001][owner:DBSEC][TABLE][DROP] You cannot do structural changes to this object[BIN$gHwZVdbMGqzgUw48FKxg5w==$0]
ORA-06512:  8행
00604. 00000 -  "error occurred at recursive SQL level %s"
*Cause:    An error occurred while processing a recursive SQL statement
           (a statement applying to internal dictionary tables).
*Action:   If the situation described in the next error on the stack
           can be corrected, do so; otherwise contact Oracle Support.

반응형