2

新しく作成したテーブルがあります。挿入しようとすると、..

SQL Error: ORA-01950: no privileges on tablespace 'ADMINISTRATOR'
01950. 00000 -  "no privileges on tablespace '%s'"
*Cause:    User does not have privileges to allocate an extent in the
           specified tablespace.
*Action:   Grant the user the appropriate system privileges or grant the user
           space resource on the tablespace.

これを修正するために、私はいくつかのことを試しました...

GRANT UNLIMITED TABLESPACE TO MY_TABLE;


grant RESOURCE,CONNECT,UNLIMITED TABLESPACE to USER_NAME;


alter user "USER_NAME"  
quota unlimited on "ADMINISTRATOR"

...しかし、エラーは残ります。この失敗の原因は何ですか?どうすれば修正できますか?

4

1 に答える 1

0

これを試して

alter database datafile '/u01/app/oracle/your_tablespace_datafile_name.dbf' autoextend on maxsize unlimited;

于 2014-07-17T09:38:07.500 に答える