create user user_name identified by password
default tablespace XXXX
temporary tablespace *****
---------------------

解决方案 »

  1.   

    CREATE USER "USER_NAME" PROFILE "DEFAULT" IDENTIFIED BY "密码" DEFAULT TABLESPACE "USERS" TEMPORARY TABLESPACE "TEMP" ACCOUNT UNLOCK;GRANT "CONNECT" TO "USER_NAME";
      

  2.   

    请问tablespace应该跟什么?The default tablespace assign to this user .
    So when creating objects under this user , if you don't specify 
    the tablespace , the default tablespace will be used for that object (table , index)
      

  3.   

    create user username identified by password
      default tablespace USERS
      temporary tablespace USERS
      

  4.   


    CREATE USER "USERNAME"  PROFILE "DEFAULT" IDENTIFIED BY "passwd" 
        DEFAULT 
        TABLESPACE "USERS" TEMPORARY 
        TABLESPACE "TEMP" ACCOUNT UNLOCK;
    GRANT "CONNECT" TO "USERNAME";  // 可以连接
    GRANT "RESOURCE" TO "USERNAME"; //可以创建删除表、视图并可以导入导出
      

  5.   

    default tablespace 缺省表空间,该用户的所有对象缺省存储在这个表空间上
    temporary tablespace USERS 临时表空间