alter user XX quota unlimited on USER;

解决方案 »

  1.   

    alter user 用户名 quota unlimited on USERS
      

  2.   

    默认情况下,新建的用户在任何表空间都不具有任何配额,也可以在创建用户的时候指定,如:create user 用户名
    identified by password
    default tablespace USERS
    quota 100M/unlimited on USERS
    temporary tablespace TEMP;
      

  3.   

    用SYS登陆
    alter user 用户名 quota unlimited on USERS
    grant dba to 用户名
      

  4.   

    grant unlimited tablespace to 用户名;
    grant resource to 用户名;