日期:2014-05-16 浏览次数:20416 次
?
?
?
/*分为四步 */
/*第1步:创建临时表空间 ?*/
create temporary tablespace common_temp ?
tempfile 'D:\oracle\product\10.2.0\oradata\common\common_temp.dbf'?
size 50m ?
autoextend on ?
next 50m maxsize 20480m ?
extent management local; ?
?
/*第2步:创建数据表空间 ?*/
create tablespace common_data ?
logging ?
datafile 'D:\oracle\product\10.2.0\oradata\common\common_data.dbf'?
size 50m ?
autoextend on ?
next 50m maxsize 20480m ?
extent management local; ?
?
/*第3步:创建用户并指定表空间 ?*/
create user myceibs identified by myceibs ?
default tablespace common_data ?
temporary tablespace common_temp; ?
?
?
/*第4步:给用户授予权限 ?*/
grant connect,resource,dba to myceibs;
?
?
?