当前位置: 代码迷 >> Oracle管理 >> 新手问个oracle小疑点。请高手指教
  详细解决方案

新手问个oracle小疑点。请高手指教

热度:65   发布时间:2016-04-24 05:15:45.0
新手问个oracle小问题。请高手指教
E:\Documents and Settings\Administrator>sqlplus /nolog

SQL*Plus: Release 10.2.0.1.0 - Production on 星期二 6月 19 10:46:29 2012

Copyright (c) 1982, 2005, Oracle. All rights reserved.

SQL>
SQL> conn /as sysdba
已连接。

SQL> create tablespace interlib datafile 'E:\oracle\product\10.2.0\oradata\inter
lib\interlib.dbf' size 1024m;

表空间已创建。

SQL> create user interlib identified by interlib default tablespace tablespace i
nterlib ;
create user interlib identified by interlib default tablespace tablespace interl
ib
  *
第 1 行出现错误:
ORA-00922: 选项缺失或无效。
为什么会提示 ORA-00922: 选项缺失或无效。

------解决方案--------------------
SQL code
--好像多了個tablespacecreate user interlib identified by interlib default  tablespace interlib ;
------解决方案--------------------
create user interlib identified by interlib default tablespace tablespace interlib ;


标红的位置,多了一个tablespace
  相关解决方案