How do you move a partitioned table from one tablespace to another in Oracle 11g?
问题 I have a partitioned table that belongs to tablespace report . I want to move it to tablespace record instead. One possibility is to drop the table and recreate it in the new tablespace, but that is not an option for me, since there is data in the table that needs to survive the move. I started by checking that the partitions actually belong to tablespace report with: SELECT * FROM user_tab_partitions WHERE table_name = 'REQUESTLOG'; Then I just tried: ALTER TABLE requestLog MOVE TABLESPACE