반응형
에러문
ORA-08104: this index object 197304 is being online built or rebuilt
08104, 00000, "this index object %s is being online built or rebuilt"
// *Cause: the index is being created or rebuild or waited for recovering
// from the online (re)build
// *Action: wait the online index build or recovery to complete
원인
create index online 이나 alter index rebuild online 작업 중 비정상적인 종료로 인해서 종료되었을 때 그 후에 다시 시도하면 나오는 에러
해결
1.DB에서 자동으로 clean up해주므로 따로 작업할 필요없음.
2.급하게 바로 작업해야 한다면 dbms_repair.online_index_clean 을 사용하여 manual하게 cleanup
(sysdba 에서 수행)
declare
v_ret boolean;
begin
v_ret := dbms_repair.online_index_clean(197304);
end;
/
반응형
'Oracle > 이벤트' 카테고리의 다른 글
ora-01686: max # files (1023) reached for the tablespace (0) | 2023.04.07 |
---|---|
SQL*Loader-510: Physical record in data file is longer than the maximum(1048576) (0) | 2023.02.01 |
[에러 해결] PK 중복 관련 ORA-00001: unique constraint primary key violated (0) | 2023.01.13 |
ORA-15041: diskgroup "RECO01" space exhausted (0) | 2022.12.20 |
ora-14120 incompletely specified partition bound for a DATE column (0) | 2022.12.06 |
댓글