作者:david_zhang@sh 【轉載時請以超鏈接形式標明文章】
鏈接:http://www.cnblogs.com/david-zhang-index/archive/2012/03/20/2409032.html
建表且指定表空間
create table scott.test (id number(5),name varchar2(10)) tablespace users;
將scott.test表從users表空間移動到example表空間
alter table scott.test move tablespace example;