/*
分为四步
*/
/*
第1步:建立临时表空间
*/
create
temporary
tablespace user_temp
tempfile
'
G:\oracle\product\10.1.0\chenyanxi\user_temp.dbf
'
size 50m
autoextend
on
next
50m maxsize 20480m
extent management local;
/*
第2步:建立数据表空间
*/
create
tablespace user_data
logging
datafile
'
G:\oracle\product\10.1.0\chenyanxi\user_data.dbf
'
size 50m
autoextend
on
next
50m maxsize 20480m
extent management local;
/*
第3步:建立用户并指定表空间
*/
create
user username identified
by
password
default
tablespace user_data
temporary
tablespace user_temp;
/*
第4步:给用户授予权限
*/
grant connect,resource,dba
to username;
本文出自 “陈砚羲” 博客,谢绝转载!oracle