ORACLE
LOB 테이블스페이스 이동
하이안
2010. 10. 11. 11:49
1. LOB 확인
select * from user_lobs;
select * from user_segments;
alter table "table_name" move tablespace "tablespace_name";
3. LOB 컬럼 이동
alter table "table_name" move lob("column_name") store as (tablespace "tablespace_name");
※ PK, INDEX 들은 rebulid 또는 제거 후 재생성시킴.