Oracle 创建用户 SQL语句

转载:http://www.cnblogs.com/netsql/articles/1745978.html


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

create temporary tablespace hajmt_temp  
tempfile 'D:\app\Administrator\oradata\jmt\hajmt_temp.dbf' 
size 50m  
autoextend on  
next 50m maxsize 20480m  
extent management local;  




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


/*第3步:创建用户并指定表空间  */
create user hajmt identified by   hajmt
default tablespace hajmt_data  
temporary tablespace hajmt_temp;  
 
/*第4步:给用户授予权限  */
grant connect,resource,dba to hajmt;
 

你可能感兴趣的:(Oracle 创建用户 SQL语句)