728x90
반응형
ORA-08104 : this index object is being online built or rebuilt
Online 옵션을 적용 인덱스를 생성중 비정상적으로 종료했을 경우
drop index, alter index rebuild 등의 작업이 다음과 같은 오류 발생.
이 때 object id을 이용하여 clean 가능
sys 유저로 수행해야 한다.
$ sqlplus "/ as sysdba"
SQL> declare
v_ret boolean;
begin
v_ret := dbms_repair.online_index_clean(object_id);
end;
/
728x90
반응형
'oracle' 카테고리의 다른 글
[ORACLE] SQL PLAN 변경 확인 (0) | 2024.05.29 |
---|---|
[ORACLE] ORA-27504,ORA-27300,ORA-27301,ORA-27302 (0) | 2023.06.23 |
[ORACLE] Partition Global Index (Global 추출 쿼리) (0) | 2023.06.14 |
[ORACLE] ORA-14064 : index with unusable partition exists on unique/primary constraint key (0) | 2023.05.25 |
[ORACLE] VOTING DISK (0) | 2023.05.15 |