oracle: Modify the table space

Recently built a table, found the wrong table space, and the existing data in the table, so the thought of modifying an existing table table space

1, table space to view the table where the
select table_name, tablespace_name from dba_tables where table_name = ' uppercase table name';
2, modify the table space
alter table table move tablespace destination table space name
3, whether the query has been modified
select table_name, tablespace_name from dba_tables where table_name = 'uppercase table';

Guess you like

Origin www.cnblogs.com/handhead/p/12565130.html