Import a Oracle DMP file into a Fresh install of oracle - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T01:15:09Z http://stackoverflow.com/feeds/question/270656 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/270656/import-a-oracle-dmp-file-into-a-fresh-install-of-oracle 1 Import a Oracle DMP file into a Fresh install of oracle James 2008-11-06T22:52:12Z 2009-07-22T14:25:36Z <p>A client sent us a oracle database we need to test against. We don't use oracle or have any oracle expertise in house.</p> <p>We need to setup the database so we can connect to it and debug a problem.</p> <p>I did a fresh install of oracle 9 (the version the client is running) and the management tools.</p> <p>I cannot for the life of me get it to import the data. It cannot be this complicated. I must be getting something wrong.</p> <p>I've tried:</p> <p>C:\oracle\ora92\bin>imp 'sys/password AS SYSDBA' file=c:\database.dmp full=yes log=implog.txt</p> <p>and got:</p> <p>Connected to: Personal Oracle9i Release 9.2.0.1.0 - Production With the Partitioning, OLAP and Oracle Data Mining options JServer Release 9.2.0.1.0 - Production</p> <p>Export file created by EXPORT:V09.02.00 via conventional path</p> <p>Warning: the objects were exported by SYSTEM, not by you</p> <p>import done in WE8MSWIN1252 character set and AL16UTF16 NCHAR character set . importing SYSTEM's objects into SYS . importing ABCDE's objects into ABCDE IMP-00003: ORACLE error 1435 encountered ORA-01435: user does not exist Import terminated successfully with warnings.</p> <p>But nothing shows up in the manager as far as tables in any schema and I'm at my wits end.</p> http://stackoverflow.com/questions/270656/import-a-oracle-dmp-file-into-a-fresh-install-of-oracle/270693#270693 2 Answer by Justin Cave for Import a Oracle DMP file into a Fresh install of oracle Justin Cave 2008-11-06T23:01:36Z 2008-11-06T23:01:36Z <p>Did the client provide the details of how they generated the dump file? In particular, are you certain that this is a full export rather than a schema-level export, a tablespace-level export, or a table-level export?</p> http://stackoverflow.com/questions/270656/import-a-oracle-dmp-file-into-a-fresh-install-of-oracle/270776#270776 2 Answer by zendar for Import a Oracle DMP file into a Fresh install of oracle zendar 2008-11-06T23:32:17Z 2008-11-07T14:33:13Z <p>It is not common to create tables as SYS or SYSTEM in Oracle, as those two accounts are administrators. </p> <p>Error means that your client created tables as user <code>ABCDE</code>.</p> <p>You should create that user before import, then you should import data as that user, </p> <p>This should eliminate the error because exported file contains permissions and other informations related to user <code>ABCDE</code> that does not exist in database.</p> <p>Check this question for additional hints: <a href="http://stackoverflow.com/questions/95578/how-to-determine-the-schemas-inside-an-oracle-data-pump-export-file">How to determine the Schemas inside an Oracle Data Pump Export file.</a></p> http://stackoverflow.com/questions/270656/import-a-oracle-dmp-file-into-a-fresh-install-of-oracle/272108#272108 2 Answer by Nick Pierpoint for Import a Oracle DMP file into a Fresh install of oracle Nick Pierpoint 2008-11-07T13:47:00Z 2008-11-07T13:47:00Z <p>You first need to create user "ABCDE"</p> <p>Something like</p> <p>In SQL*PLUS:</p> <pre><code>create user ABCDE identified by password; grant connect, resource to ABCDE; </code></pre> <p>There's a squillion options on "create user" but this would use the defaults.</p> http://stackoverflow.com/questions/270656/import-a-oracle-dmp-file-into-a-fresh-install-of-oracle/272184#272184 1 Answer by dacracot for Import a Oracle DMP file into a Fresh install of oracle dacracot 2008-11-07T14:16:37Z 2008-11-07T14:16:37Z <p>Rather than 'sys/password AS SYSDBA', try 'system/password'.</p> <p>Oracle's tool requires the same user to import as created the export even though sys is the "all powerful" user.</p> http://stackoverflow.com/questions/270656/import-a-oracle-dmp-file-into-a-fresh-install-of-oracle/281497#281497 2 Answer by Andrew for Import a Oracle DMP file into a Fresh install of oracle Andrew 2008-11-11T17:07:15Z 2008-11-11T17:07:15Z <p>You'll need to create a user (or Schema) first</p> <pre><code>C:\&gt;sqlplus system/password SQL&gt; create user CLIENT_TEST identified by client_test_password; SQL&gt; grant connect, unlimited tablespace, resource to CLIENT_TEST; SQL&gt; exit </code></pre> <p>Then you can use the <code>fromuser=</code> and <code>touser=</code> IMP switches to import the data into the new user/schema:</p> <pre><code>C:\&gt;imp system/password FROMUSER=ABCDE TOUSER=client_test file=c:\database.dmp full=yes </code></pre> <p>Hope that helps!</p>