EXPERT RESPONSE
You can move the table with the following command:
ALTER TABLE my_table MOVE TABLESPACE new_tablespace;
The biggest advantage is that any privileges, constraints, synonyms, etc. are retained across the move. You will have to rebuild any indexes for this table with the ALTER INDEX REBUILD command though. But that should be a pretty quick operation.
|