PL/SQL新建Oracle用户

1.使用PL/SQL以sysdba的方式登陆

2.执行创建用户脚本

-- Create the user 
create user c##coxexec 
  identified by coxexec
  default tablespace USERS
  temporary tablespace TEMP
  profile DEFAULT

  quota unlimited on users

3.给用户授权

grant connect,resource,dba to c##coxexec;

猜你喜欢

转载自blog.csdn.net/sinat_25076521/article/details/80037874
今日推荐