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放到最后则通过。
本文探讨了在Oracle 11g环境下使用SQL*Plus创建用户时,指定默认表空间和临时表空间顺序的重要性。文章指出,将default tablespace放在temporary tablespace之后可以避免执行错误。

被折叠的 条评论
为什么被折叠?



