본문 바로가기

online3

파티션 테이블 옵션사용 여부에 따른 인덱스 변화 체크 테스트 12c 부터 사용가능한 online 옵션에 대해서 사용 후에 인덱스가 따로 rebuild를 하지 않아도 되서 굉장히 편리했습니다. 근데 update indexes라는 옵션이 따로 있어서 차이를 비교해보고 추가적으로 compress 옵션 사용시에 인덱스도 compress 되는지 체크하겠습니다. 출처 : https://docs.oracle.com/database/121/VLDBG/GUID-1D59BD49-CD86-4BFE-9099-D3B8D7FD932A.htm#VLDBG1122 Updating Indexes Automatically Before discussing the individual maintenance operations for partitioned tables and indexes, it is i.. 2023. 4. 14.
[DB2] Online 백업&복구 시나리오 테스트 시나리오는 아래와 같습니다. DB2 version :V11.1 1.테이블 생성 및 데이터 INSERT 2.온라인 백업 3.테이블 DROP (장애상황 유발) 4.복구 5.테이블 확인 순서입니다. ONLINE 백업의 경우 ROLL FORWARD 과정이 추가됩니다. 1.테이블 생성 및 데이터 INSERT $ db2 "create table BACKTEST (ID INT,NAME VARCHAR(32))" $ db2 "INSERT INTO BACKTEST(ID,NAME) VALUES (1,'BAE')" $ db2 "insert into BACKTEST select * from BACKTEST" x10번 $ db2 "select count(*) from BACKTEST" 1 ----------- 4096 2.온라인.. 2023. 3. 16.
ORA-08104: this index object nnnnn is being online built or rebuilt 에러문 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 작업 중 비정상적인 종료로 인해서 종료되었을 때 그 후에 다시 .. 2023. 1. 27.