新しく作成したテーブルがあります。挿入しようとすると、..
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"
...しかし、エラーは残ります。この失敗の原因は何ですか?どうすれば修正できますか?