#sqlplusplease input user name:ss_hrinput password:ss_hr连接到:Oracle Database 11g Express Edition Release 11.2.0.2.0 - ProductionSQL> create table emp( 2 id integer primary key 3 );create table emp(*第 1 行出现错误:ORA-00959: 表空间 'TEST' 不存在
今天登陆oracle系统 遇到上述问题,可能是不小心把表空间删掉了
于是改用system账户登陆,查看表空间使用情况
SQL> conn system/cici123love已连接。
SELECT tablespace_name FROM dba_tablespaces;
果然显示结果不包含 TEST表空间,下面将一个已有的表空间(CICI)赋予给ss_hr账户
SQL> alter user ss_hr quota unlimited on CICI;用户已更改。SQL>create table emp(id integer)tablespace CICI;