把表和索引移动到不同的表空间

Move tables & indexes to different tablespace

# https://deveshdba.wordpress.com/2016/08/11/move-tables-indexes-to-different-tablespace/

ALTER TABLE <TABLE_NAME> MOVE TABLESPACE TEST_TBL;
ALTER INDEX <INDEX_NAME> REBUILD TABLESPACE TEST_TBL;
原文地址:https://www.cnblogs.com/chenjo/p/14189593.html