Nacho,
Typical code to create a user parallels the following (replacing the "< >" entries with valid values, of course):
create user <username> identified by <password>
default tablespace <tablespace where you want this user's tables/indexes to reside when not otherwise specified>
temporary tablespace <name of tablespace for disk sorting>
quota <some number of bytes or megabytes or UNLIMITED> on <tablespace name>
/
Without quota on a tablespace, a user cannot create space-consuming objects such as tables and indexes.
In addition, you must GRANT the new user privileges to log-in and create space-consuming objects, thus:
GRANT <username> connect, resource;
The above two commands should allow <username> to log in and create objects. There are other code variations to achieve the same results, but these are typical.
![[santa] [santa] [santa]](/data/assets/smilies/santa.gif)
Mufasa
(aka Dave of Sandy, Utah, USA @ 20:46 (11Feb04) UTC (aka "GMT" and "Zulu"

, 13:46 (11Feb04) Mountain Time)