Skip to Main Content

SQL & PL/SQL

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Not able to insert data into the table owned by the user

Rajan SwJan 3 2020 — edited Jan 3 2020

I am connected to the user CUCCP8 and I can check the object is owned by that user still not able to insert data into that.

I am using Oracle 12c R2

SHOW USER

USER is "CUCCP8"

SELECT TABLE_NAME, OWNER FROM all_tables WHERE table_name = 'ACCOUNT';

ACCOUNT CUCCP8

INSERT INTO account

values (3, 3, 3, 3, 3, 3, null, null, null);

Getting below error :

Error starting at line : 12 in command -

INSERT INTO account

values (3, 3, 3, 3, 3, 3, null, null, null)

Error at Command Line : 12 Column : 10

Error report -

SQL Error: ORA-01031: insufficient privileges

01031. 00000 -  "insufficient privileges"

*Cause:    An attempt was made to perform a database operation without

           the necessary privileges.

*Action:   Ask your database administrator or designated security

           administrator to grant you the necessary privileges

Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Jan 31 2020
Added on Jan 3 2020
6 comments
1,813 views