首页 > 技术文章 > oracle新建表空间

unique1319 2017-12-16 14:22 原文

/*分为四步 */
/*第1步:创建临时表空间  */
create temporary tablespace slfph_temp 
tempfile 'D:\oracledata\slfph_temp.dbf' 
size 50m  
autoextend on  
next 50m maxsize 20480m  
extent management local; 

/*第2步:创建数据表空间  */
create tablespace slfph_data  
logging  
datafile 'D:\oracledata\slfph_data.dbf' 
size 50m  
autoextend on  
next 50m maxsize 20480m  
extent management local; 

/*第3步:创建用户并指定表空间  */
create user SLFPH identified by SLFPH  
default tablespace slfph_data  
temporary tablespace slfph_temp; 

/*第4步:给用户授予权限  */
grant connect,resource,dba to SLFPH;

 

推荐阅读