注册 登录
编程论坛 Oracle论坛

[求助]这个错误是什么意思啊

guoxhvip 发布于 2007-11-27 01:03, 2477 次点击
初学oracle 请教各位高手创建用户时这个错是什么意思啊 如何解决 谢谢
2 回复
#2
ILoveMK2007-11-27 13:22
ORA-10615: Invalid tablespace type for temporary tablespace
Cause: Tablespace with AUTO SEGMENT SPACE MANAGENEMT specified cannot be used as a temporary tablespace
Action: Recheck the tablespace name and re-issue the statement
#3
飙马2007-11-28 21:41
你在Sqlplus下面创建吧:
create user User1 identified by Password default tablespace datausr
temporary tablespace temp;
grant connect,resource,create table to User1;
1