수동으로 table을 reorg하는 방법 (공간 재조직)
- 테이블2에 데이터를 복사
- 원본 테이블을 truncate하여 공간 확보
- 테이블2의 내용을 원본 테이블에 복사
- drop 테이블2
-- manual reorg
create table tbl2 as select * from tbl;
truncate table tbl;
insert into tbl select * from tbl2;
drop table tbl2 purge;
commit;
'Database' 카테고리의 다른 글
(Oracle) ALTER SYSTEM SWITCH LOGFILE vs ALTER SYSTEM ARCHIVELOG CURRENT (0) | 2013.04.23 |
---|---|
Oracle flashback (0) | 2013.04.10 |
How can I create a copy of an Oracle table without copying the data? (0) | 2013.04.08 |
(Oracle) Compile Invalid Public Synonyms (0) | 2013.03.14 |
(Oracle) Data Pump Export (expdp) and Data Pump Import(impdp) (0) | 2013.03.08 |