Create TableSpace in Oracle XE 11g using SQLPLUS
To create a user first you need to create a tablespace to create a tablespace use the following query
create tablespace <tablespace_name> datafile '<path>' size 32m autoextend on next 32m maxsize 2048m extent management local;
<tablespace_name> : Your new tablespace name
<path> : Path to the dbf file (database file)
Example
create tablespace MYTABLESPACE datafile '/data/oracle/oradata/tpol/tools01.dbf' size 32m autoextend on next 32m maxsize 2048m extent management local;
Create User in Oracle XE 11g using SQLPLUS
If you have no privilege for create .dbf (database) file then you can skip the above query and you can create the user using the system tablespace.
Create user
SQL> CREATE USER jijokjose IDENTIFIED BY jijokjose DEFAULT TABLESPACE SYSAUX TEMPORARY TABLESPACE "TEMP";
User created.
SQL>