just create user!
do like this
create tablespace test
datafile 'c:/datafile/test.db'
size 10 m
autoextend on
next 10m
;
create user dbuser identified by dbuser
default tablespace test
temporary tablespace temp;
grant connect to dbuser;
grant resource to dbuser;
it is ok now