导出用户的结构和数据(假设用户名/密码 tempout/tempout)。
在dos窗口中使用exp命令
例如:c:\>exp tempout/tempout full=y file=d:\tempout.dmp

解决方案 »

  1.   

    利用exp命令将数据导出,然后利用imp命令将导出的数据文件*.dmp导入。http://expert.csdn.net/Expert/FAQ/FAQ_Index.asp?id=36544
      

  2.   

    可以在Oracle DBA中将数据库导出或者备份
    然后再在新的数据库中导入或还原
      

  3.   

    原主机上:
    exp system/system_password owner=你想导出的用户1,用户2... file=filename log=logname
    目标主机上:
    imp system/system_password fromuser=你导出的用户名1,用户2...   touser=你要导入的用户名1,用户2...  file=filename log=logname
    (注意,imp时,fromuser和touser的顺序是一一对应的)
      

  4.   

    http://user1.7host.com/rocer/expface.zip