新建用户LOOK的例子-- Create the user 
create user LOOK
  identified by ""
  default tablespace ZP
  temporary tablespace TEMP
  profile DEFAULT;-- Grant/Revoke role privileges 
grant connect to LOOK;
grant dba to LOOK;
grant resource to LOOK;-- Grant/Revoke system privileges 
grant unlimited tablespace to LOOK;

解决方案 »

  1.   

    -- Create the user 
    create user LOOK
      identified by ""
      default tablespace ZP
      temporary tablespace TEMP
      profile DEFAULT;-- Grant/Revoke role privileges 
    grant connect to LOOK;
    grant dba to LOOK;
    grant resource to LOOK;-- Grant/Revoke system privileges 
    grant unlimited tablespace to LOOK;
      

  2.   

    先在这里感谢各位,不过这些代码我的例子里也是这个意思.
    我想问的是用户就是那个create user  这个用户无法登陆,是否有其他配置方面的问题!