【原】oracle建表并指定表空间

作者: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;
posted @ 2012-03-20 23:19  david_zhang@sh  阅读(9224)  评论(0编辑  收藏  举报