I am trying to create a user in Oracle 11g XE using the following code.
create user test1 identified by testee1
default tablespace USERS
temporary tablespace TEMP
grant connect, resource, dab to test1
account unlock;
create user test1 identified by testee1
default tablespace USERS
temporary tablespace TEMP
grant connect, resource, dab to test1
quota 5m on USERS
quota 5m on TEMP
account unlock;
account unlock;