|
-
So... your problem is a LOB column using too much space?
Statement below will move table to new tablespace BUT will not move LOB segments from current tablespace...
ALTER TABLE table_name MOVE TABLESPACE target_tablespace
/
Statement below will move segments that make up specific LOB column to new tablespace...
ALTER TABLE table_name
MOVE LOB(clob_column) STORE AS (
TABLESPACE target_tablespace
)
/
If your problem is just the LOB column I'll do just the second one.
Hope this helps.
Pablo (Paul) Berzukov
Author of Understanding Database Administration available at amazon and other bookstores.
Disclaimer: Advice is provided to the best of my knowledge but no implicit or explicit warranties are provided. Since the advisor explicitly encourages testing any and all suggestions on a test non-production environment advisor should not held liable or responsible for any actions taken based on the given advice.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|