how to move lob segment from one tablespace to another

Here we are presenting ways on how to move lob segment from one tablespace to another (1) First take the initial size of the LOB segment SELECT table_name, column_name, segment_name, a.bytes FROM dba_segments a JOIN dba_lobs b USING (owner, segment_name) WHERE b.table_name = ‘TABLE_NAME’; More queries can be found at How to find space usage …

how to move lob segment from one tablespace to another Read More »