orcale 无法新建用户~~~~急   就业用sys新建了超级用户,想再用“其他用户”新建新的数据库没有了那个选项?

解决方案 »

  1.   

    图片挂了。--要创建用户直接使用命令就行了
    create user 用户名 identified by 密码 default tablespace 表空间名;
    --授权
    grant connect,resource to 用户名;
      

  2.   

    首先要有创建用户的权限,然后再创建用户,最后给用户授权:
    (1)以sys用户登录
    (2)create user 用户名 identified by 密码【设置参数】;参数不设置即使用系统默认的参数,
    (3)使用grand进行授权
      

  3.   

    create uses 用户名 identified by 密码
      

  4.   

    sys创建用户并授于权限即可。
      

  5.   

     create user test identified by test default tablespace users;用户已创建。SQL> grant SESSION,resource  to james;