If you just want to move data to another table space, I would do something like this:
Code:
CREATE TABLE new_table LIKE old_table IN target_ts
INSERT INTO new_table SELECT * FROM old_table
DROP TABLE old_table
You should also check foreign keys, triggers, and any other objects that may have dependencies on the table you want to move.