I have a .dmp file I received from a third party, and I'm trying to load it into Oracle SQL Developer. I don't have much information on how this file was extracted, but if I knew what info I needed, I could go back and ask them.
Since I'm a complete Oracle newbie, I've been trying to run this through the Data Pump Import Wizard, but it's coming back with errors instead of loading. At first, we had this:
>Processing object type SCHEMA_EXPORT/USER
>ORA-39083: Object type USER failed to create with error:
>ORA-02380: profile NEEDED_USER does not exist
It then had this error all the way down the log for every item. I googled this, and found that I needed to create the profile in the database. Perfect! Easy! I went ahead and did that in SQL Plus, then ran the file through again and got this error message:
>Processing object type SCHEMA_EXPORT/USER
>ORA-39083: Object type USER failed to create with error:
>ORA-00959: tablespace 'DATA' does not exist
This is where I stopped, because creating a tablescape seems more complicated and it also seems like I'd end up playing whack-a-mole creating these items one-by-one, and I know that there are a LOT of tables in there. When I googled using the Data Pump Import Wizard, I wasn't able to find this specific problem.
Is it possible that there's an issue with the dmp file itself? Any guidance on what questions I should ask of the originator of the file, or a way I should request them to extract it? Also, is it possible I set up the database incorrectly on my end - again, I'm a complete newbie and am trying to muddle through as best I can, so it won't surprise me if I made mistakes. Any help would be greatly appreciated! Thank you!