我刚刚才开始学oracle,请问一下怎么用SQL语句来创建用户呢?急!!!!!

解决方案 »

  1.   

    创建用户:
    create user username identified by password
    default tablespace tablespace_name
    temporary tablespace temp
    quota unlimited on tablespace_name;授权:
    grant connect,resource to username;
      

  2.   

    创建用户:
    create user username identified by password
    default tablespace tablespace_name
    temporary tablespace temp
    quota unlimited on tablespace_name;授权:
    grant connect,resource to username;
      

  3.   

    我就是按照ZengMuAnSha(曾牧暗鲨) 说的干的,为什么所建的用户只能以sysdba身份登录呢?
      

  4.   

    楼主关注下我的blog,里面有些基础的语句:
    http://blog.csdn.net/kinglht/archive/2007/09/03/1769926.aspx