So, I examined all the proposed methods for importing .dmp files, and they do not answer this question: where does the data go after they are imported?
Context: I created the user as follows:
SQL> create user IMPORTER identified by "12345"; SQL> grant connect, unlimited tablespace, resource to IMPORTER;
Then I ran the "imp" command as follows:
C:\>imp system/password FROMUSER=OVIEDOE TOUSER=IMPORTER file=c:\database1.dmp
Now there were 9 .dmp files, after each of them he asked me about the following, and then I received the message "Import completed successfully with warnings."
Warning:
Warning: the objects were exported by OVIEDOE, not by you import done in WE8MSWIN1252 character set and AL16UTF16 NCHAR character set export client uses WE8ISO8859P1 character set (possible charset conversion) IMP-00046: using FILESIZE value from export file of 2147483648
Now he says that it was completed successfully, so my assumption (I am new to oracle, so this may be wrong) is that the data was loaded. However, when I use the SQL developer to connect to the database and browse under the βtablesβ node under the user IMPORTER, there is nothing there. What's happening? Did you download the data? If so, where can I find it?
source share