reorg => DB의 최적화로 성능향상을 위한 것. 1. 단편화 해소를 통한 성능 향상 - 인덱스 rebuild ex) alter index scott.ix_tbx_01 rebuild tablespace ts_work; * 인덱스 리빌딩시 nologging 전환. 리빌딩 후 logging alter index scott.ix_tbx_01 rebuild partition p04 paralel 5 nologging; alter index scott.ix_tab_01 logging; - 테이블 move ex) alter table scott_tab_01 move tablespace ts_work; 10g 부터 제공하는 공간 재 확보 기능, 온라인 테이블 재구성, 스토리지 증가량 예측 기능 등.... => 세..