SQL建表空间、用户

/*第1步:创建临时表空间  */

create temporary tablespace user_temp  

tempfile 'D:\oracle\oradata\orcl\user_temp.dbf' 

size 50m autoextend on next 50m maxsize UNLIMITED;  

 

/*第2步:创建数据表空间  */

create tablespace user_data  

datafile 'D:\oracle\oradata\orcl\user_data.dbf' 

size 50m autoextend on next 50m maxsize UNLIMITED; 

 

/*第3步:创建用户并指定表空间  */

create user username identified by username 

default tablespace user_data temporary tablespace user_temp; 

 

/*第4步:给用户授予权限  */

grant connect,resource,dba to username

猜你喜欢

转载自lbwahoo.iteye.com/blog/2153616