Requires Free Membership to View
ALTER TABLE table_name MOVE TABLESPACE new_ts;To move an index, use the following:
ALTER INDEX index_name REBUILD TABLESPACE new_ts;To move the LOB when moving the table, use the following:
ALTER TABLE table_name MOVE TABLESPACE new_ts LOB (lob_item) STORE AS (TABLESPACE another_new_ts);All of this is documented in the SQL Reference Guide.
This was first published in September 2006

Join the conversationComment
Share
Comments
Results
Contribute to the conversation