I created a user in Oracle 11gR2 using the following script
create user cata identified by cata default tablespace tbs temporary tablespace temp; grant DBA to cata;
After trying to import a dump file using the command
impdp system/ password@ORCL11 schemas=cata dumpfile=cata.dmp logfile=log.txt
I get the following error
ORA-39002: Invalid operation ORA-39165: Schema ATGDB_CATA not found.
Surprisingly, when I try to export a dump from the same scheme, I can do it. So, if the schema was not created properly, I also could not export the dump file, right?
I also checked dba_users and created a schema. Is there anything else I can do to solve this problem.
Aazim source share