你所说的是sys、system都是用户(user),数据库用户。如果你要新建用户,那么使用:
create user <username> identified by <password>
  default tablespace <tablespace name>
  temporary tablespace <temporary tablespace name>;
然后再授权:
grant <privilege> to <username>;