1. LOB 확인
select * from user_lobs;
select * from user_segments;

2. 테이블 이동
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 또는 제거 후 재생성시킴.





Posted by 하이안
,