I created some tables using DBO_USER which had default tablespace as USERS. I moved these tables to another tablespace which is DBO_TS. I have another user APP_USER which tries to insert into these tables created by DBO_USER and APP_USER has unlimited grants and quotas on DBO_TS tablespace. APP_USER gets the error message ORA-01950: no privileges on tablespace 'USERS'.
I can't alter the user as mentioned in
I want to know the following:
Why error still refers back to USERS tablespace?
How can I enable APP_USER to insert into tables created by DB_USER without altering the user and default tablespace of the user?
Thanks.