//创建临时表空间
create temporary tablespace adai_ts_temp
tempfile 'd:\oracle\product\10.2.0\adai_db\adai_ts_temp01.dbf'
size 32m
autoextend on
next 32m maxsize 2048m
extent management local;
//创建数据表空间
create tablespace adai_ts_data
logging
datafile 'd:\oracle\product\10.2.0\adai_db\adai_ts_data01.dbf'
size 32m
autoextend on
next 32m maxsize 2048m
extent management local;
//创建用户并指定表空间
create user adai identified by adai
default tablespace adai_ts_data
temporary tablespace adai_ts_temp;
//给用户授予权限
grant connect,resource to adai_user;
//以后以该用户登录,创建的任何数据库对象都属于test_temp 和test_data表空间,这就不用在每创建一个对象给其指定表空间了。
来源:https://www.cnblogs.com/adai417/archive/2009/04/04/1429566.html