I have created a user in AWS oracle RDS and have my tables,functions and all other code. As I needed the same replica of this DB structure, I exported it to an sql file using SQL Developer. Created another user, and now want to import the sql file to this new user, but it is throwing insufficient privilege error.
ORA-01031: insufficient privileges
- 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
I have granted the privileges to the user. Is it because of the user1 which is present in the create table statement?
CREATE TABLE "user1"."MBOMCOMPONENTS" ( "COMPONENTNO" VARCHAR2(14 BYTE), "PLANT" VARCHAR2(50 BYTE) )
Could you please help. Thank you, Manju