check which type of import you have taken.
steps
first generate a logfile to knw wat are the contents in it.
using,
cmd > imp system/passwd file=c:\qds.dmp log=c:\import.log show=y
let it run,then you will find the logfile genertaed in the path,the check out whtr you are going for a schema level import or a full database level import.
Import differs in ,
Full database level import == > you have to verify with the logfile wheather you have necessary path ( i.e c:\ d:\ e:\ ) and in that you should create the specified folders.
once after you verify all the exact folders present then go with the import using
cmd > imp system/passwd file=c:\qds.dmp log=d:\fullimp.log full=y
Schema wise (user wise ) ===> you have to create the necessary tablespaces mentioned in the logfile which you generated at the top.but path may vary,then create the users ,then issue,
imp system/passwd file=c:\qds.dmp log=user.log fromuser=username in dumpfile touser= username to be imported
Also refer the following site to knw more abt import parameters,
http://www.psoug.org/refer
Main Topics
Browse All Topics





by: sdstuberPosted on 2007-09-20 at 15:07:56ID: 19932139
do you have the dump file's export par file? that makes it a little easier to decide what to do with it at import time.
ame_here.l og"
If it's a full export, you can try to just import it You may have datafile and tablespace problems as it will try to put objects in the same place on the new db that they came from on the old db. That may or may not be possible or desirable on the destination system.
you said your database is 10g but then you ask how to create it. Do you have an empty database to import into?
if not, you'll need to create one. The easiest way to do that is with the wizard (dbca).
If you do already have one (or you just created it)
you can do have a full import with parameters something like the following but with the caveats as mentioned above.
FILE="your_dump_file.dmp"
LOG="imp_useful_log_file_n
FULL=Y
IGNORE=N
FEEDBACK=1000
If you don't have a full export in your dump file you may other steps, like creating the users and tablespaces before hand.