oracle新建表空间

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

/*第2步:创建数据表空间  */
create tablespace slfph_data  
logging  
datafile 'D:oracledataslfph_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;
原文地址:https://www.cnblogs.com/unique1319/p/8046489.html