您的位置:首页 > 运维架构

ORA-01950: no privileges on tablespace 'SNOOPY'

2011-04-27 10:32 501 查看
SQL> create table t2(

  2  col1 char);

create table t2(

*

ERROR at line 1:

ORA-01950: no privileges on tablespace 'SNOOPY'

 

 

SQL> conn sys/lubinsu as sysdba

Connected.

SQL> alter user lubinsu quota unlimited on snoopy;

 

User altered.

 

SQL> conn lubinsu/lubinsu

Connected.

 

SQL> create table t1(

  2  col1 char);

 

Table created.
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  table sql user