http://www.itpub.net/showthread.php?s=&threadid=105392http://www.oradb.net/expimp/expimp_011.htm
http://www.itpub.net/showthread.php?s=&threadid=12023
http://www.macro-base.com/zxjs/wenzhang2.htm

解决方案 »

  1.   

    to  jiezhi(風依舊) :
                         救世主。。救我啊!·
      

  2.   

    你的两个数据库的username1使用的表空间和临时表空间名称是否一致?而且成功导入后会出现Success的字样,你的导入如是被中止的话就会出现你的情况。
      

  3.   

    新的库是需要有该用户的!否则也要用touser指定一个已有的其它用户!
    你的问题:在IMP命令的后面加上Ignore=y就应该OK了!!试试!
      

  4.   

    exp userid = ehtemp/ehtemp@localdev LOG=exp_dev_ehtemp.log
    compress=n
    buffer=10000000
    file=G:\exp\localdev\exp_dev_ehtemp.DMP
    grants=Y
    indexes=Y
    rows=Y
    constraints=Y
    owner=ehtemp;imp userid = ehtemp/ehtemp@dev
    LOG=imp_dev_ehtemp.log
    buffer=10000000
    file=G:\exp\localdev\exp_dev_ehtemp.DMP
    grants=Y
    indexes=Y
    rows=Y
    Commit=Y 
    Ignore=N 
    constraints=Y;
      

  5.   

    SQLPlus system/system@system @NewDB.SQL
    IMP 用户名/密码@system file=add full=y
    del "E:\Program Files\add\CreateDataBaseTag.cmd"
    create tablespace system datafile '路径' size 500M autoextend on next 100M maxsize 1000M;
    create user 用户名 identified by 密码 default tablespace system temporary tablespace temp;
    grant resource ,connect ,DBA,create table to 用户名;
    exit