oracle简单用户创建



--创建portal表空间

create tablespace KERONG_PORTAL_SP   
datafile 'E:\tablespace\KERONG_PORTAL_SP.dbf'   
size 500M  
autoextend on ;
--next 5M maxsize 3000M;  




--创建portal用户及赋予权限
create user portal
  identified by aaa 
  default tablespace KERONG_PORTAL_SP  ; 
grant connect,resource,dba to portal;

猜你喜欢

转载自blog.csdn.net/jing5481/article/details/71107772