create user user_name identified by password temporary tablespace TEMP default tablespace tablespace_name;
网上很多版本是
create user user_name identified by password
default tablespace tablespace_name
temporary tablespace TEMP;
在linux oracle11g中使用sqlplus执行错误,将default tablespace tablespace_name放到最后则通过。