Database/ORACLE
파티션 테이블 이동 명령
하이주니
2009. 3. 8. 21:41
반응형
- 테이블 이동
(alter table .... move tablespace ... / alter index .... rebuild tablespace...) -> 일반적인 이동
alter table TP_MIG_X move tablespace TS_DATA_01;
alter table TP_MIG_X move tablespace TS_DATA_01
- 파티션 테이블 이동
alter table TP_MIG_X move partition SYS_P23 tablespace TS_DATA_01;
반응형