ORACLE how to import a dump file ???! thank you!

解决方案 »

  1.   

    if the operator system is base on unix.
    then do the steps as follow:
    1、make a file named imp.par and the content as:
       userid=system/password
       file=imp.dmp
       ignore=n
       rows=y
       commit=y
       log=imp.log
    2、run the command as follow:
    nohup imp parfile=imp.par 2>imp.out 1>&2 &
    3、u can see the schedule of the imp process using the command:
    tail -f imp.out
      

  2.   

    if in the windows how to do ? thanks
      

  3.   

    If the operation system is base on windows ,you can do following steps:
    1、turn into dos command model by using cmd;
    2、enter the command as bellow:
    imp username/pwd@sid file=ARCHIV_CIF2_CUSTXN.dmp ignore=y commit=y log=t.log;