How to Move LOB Data to Another Tablespace When the Table Also Contains a LONG Column
(Doc ID 453186.1)
Last updated on DECEMBER 06, 2024
Applies to:
Oracle Database Cloud Exadata Service - Version N/A and laterOracle Database Cloud Service - Version N/A and later
Oracle Database - Enterprise Edition - Version 8.1.7.4 and later
Oracle Database Cloud Schema Service - Version N/A and later
Oracle Database Exadata Express Cloud Service - Version N/A and later
Information in this document applies to any platform.
Goal
NOTE: In the images and/or the document content below, the user information and environment data used represents fictitious data from the Oracle sample or bulit-in schema(s), Public Documentation delivered with an Oracle database product or other training material. Any similarity to actual environments, actual persons, living or dead, is purely coincidental and not intended in any manner.
Trying to move LOB data to a different tablespace for a table containing both LOB and LONG columns.
The following statement will error with ORA-00997: illegal use of LONG datatype :
ALTER TABLE foo MOVE LOB(lobcol) STORE AS lobsegment (TABLESPACE new_tbsp STORAGE (new_storage));
The ALTER TABLE ... MOVE command cannot be used to move a table containing a LONG or LONG RAW column. This is documented in the Oracle9i SQL Reference manual.
Solution
To view full details, sign in with your My Oracle Support account. |
|
Don't have a My Oracle Support account? Click to get started! |
In this Document
Goal |
Solution |