oracle创建用户的小问题

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放到最后则通过。
原文地址:https://www.cnblogs.com/Babylon/p/8487519.html