What is purpose of moving a table and the SQL statement that enables us to move a table?
meda Changed status to publish 16/07/2022
The purpose of moving a table is either to move to a new tablespace or rebuild its current tablespace.
We use the ALTER TABLE .. MOVE SQL statement for moving tables to a new tablespace.
Example:
SQL> ALTER TABLE sttms_cust_acc MOVE TABLESPACE <new-tablespace_name>;
meda Answered question 21/02/2022