是的
grant rolename to zhang;

解决方案 »

  1.   

    create user xxx identified by sssss  default tablespace users;
    grant connect to xxx;
      

  2.   

    你拼写的有点不对
    create user zhang identified by password;
      

  3.   

    CREATE USER username IDENTIFIED BY password
        DEFAULT TABLESPACE users
        TEMPORARY TALBESPACE temp
        QUOTA UNLIMITED ON  users;try it!
      

  4.   

    -- Create the user 
    create user name
      identified by pwd
      default tablespace SYSTEM
      temporary tablespace temp
      profile DEFAULT;
    -- Grant/Revoke role privileges 
    grant dba to name with admin option;
      

  5.   

    create user zhang identified by password;
    grant connect to zhang;