I have a newly created table. When I try to insert into it, I get..
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.
To fix this, I tried several things...
GRANT UNLIMITED TABLESPACE TO MY_TABLE;
grant RESOURCE,CONNECT,UNLIMITED TABLESPACE to USER_NAME;
alter user "USER_NAME"
quota unlimited on "ADMINISTRATOR"
...but the error remains. What is the cause of this failure and how can I fix it?