oracle简单用户创建

来源:互联网 发布:推荐一款手机编程软件 编辑:程序博客网 时间:2024/06/06 04:48



--创建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;
0 0